Iterar Filas y Columnas
Contents
[
Hide
]
Cómo Iterar Filas y Columnas Usando Aspose.Cells for Java
Las Filas y Columnas se pueden iterar usando la colección de filas y columnas.
Java
//Access the Maximum Display Range
Range range = worksheet.getCells().getMaxDisplayRange();
int tcols = range.getColumnCount();
int trows = range.getRowCount();
System.out.println("Total Rows:" + trows);
System.out.println("Total Cols:" + tcols);
RowCollection rows = cells.getRows();
for (int i = 0 ; i < rows.getCount() ; i++)
{
for (int j = 0 ; j < tcols ; j++)
{
System.out.print(cells.get(i,j).getName() + " - " + cells.get(i,j).getValue() + "\t");
}
System.out.println("");
}
Apache POI SS - HSSF XSSF -Iterar Filas y Columnas
Se pueden iterar Filas y Celdas en la Hoja. El código de muestra se menciona a continuación:
Java
Workbook wb = WorkbookFactory.create(inStream);
Sheet sheet = wb.getSheetAt(0);
for (Row row : sheet)
{
for (Cell cell : row)
{
System.out.println("Iteration.");
}
}