Iterar filas y columnas
Contents
[
Hide
]
Aspose.Cells - Iterar filas y columnas
Las filas y las columnas se pueden iterar utilizando la colección de filas y columnas.
Java
//Acceda al rango máximo de visualización
Rango rango = hoja de trabajo.getCells().getMaxDisplayRange();
int tcols = range.getColumnCount();
int trows = range.getRowCount();
System.out.println("Total de filas:" + trows);
System.out.println("Total de columnas:" + tcols);
RowCollection filas = celdas.getRows();
para (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
Las filas y Cells se pueden iterar en la hoja. El código de ejemplo 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.");
}
}