使用 Apache POI 如何读取特定的 Excel 列

2022-09-02 09:08:13

我在使用Apache POI时在Excel中遇到了问题。我可以跨行阅读,但有时我处于只想阅读特定列的情况。

因此,是否可以读取任何特定列,例如仅“A”列或仅读取列“C”。

我正在使用Java语言来实现这一点。


答案 1

heikkim是对的,这是一些改编自我拥有的一些代码的示例代码:

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Row;
...
for (int rowIndex = 0; rowIndex <= sheet.getLastRowNum(); rowIndex++) {
  row = sheet.getRow(rowIndex);
  if (row != null) {
    Cell cell = row.getCell(colIndex);
    if (cell != null) {
      // Found column and there is value in the cell.
      cellValueMaybeNull = cell.getStringCellValue();
      // Do something with the cellValueMaybeNull here ...
      // break; ???
    }
  }
}

对于使用类似的东西colCountrow.getPhysicalNumberOfCells()


答案 2
  Sheet sheet  = workBook.getSheetAt(0); // Get Your Sheet.

  for (Row row : sheet) { // For each Row.
      Cell cell = row.getCell(0); // Get the Cell at the Index / Column you want.
  }

我的解决方案,更简单的代码明智。


推荐