3

我正在尝试使用 POI 从 excel 中读取数据。如何检查这是否是一个空单元格?

我不知道缺少什么我认为这应该有效:

java.util.Iterator<Row> rows = worksheet.rowIterator();

HSSFRow row = (HSSFRow) rows.next();
HSSFCell cellF1 = (HSSFCell) row.getCell(5);
if(cellF1.getCellType() == HSSFCell.CELL_TYPE_BLANK) {
  String val = "";
}

我在 if 语句(空指针)中遇到错误,但只有当我使用它时,我才能检查:

   while (rows.hasNext()) {
    HSSFRow row = (HSSFRow) rows.next();
    java.util.Iterator<Cell> cells = row.cellIterator();
    while (cells.hasNext()) {
      HSSFCell cell = (HSSFCell) cells.next();
      if(cell.getCellType() == HSSFCell.CELL_TYPE_BLANK) {
        String emptytype = "";
        System.out.println("empty");
      }
    }
  }
4

5 回答 5

9

这是 1 参数版本的正常行为Row.getCell。如果您查看 API 文档,它特别声明getCell如果未定义单元格将返回 null。许多 java 函数都表现出这种行为,因此在编码时考虑到这一点并没有错。因此,您的代码的一个版本可能类似于:

boolean hasDataFlag = true;    
HSSFRow row = sheet.getRow(rowNumber);
hasDataFlag = (row != null);
HSSFCell cell = null;
if (hasDataFlag) cell = row.getCell(cellNumber);
hasDataFlag = (cell != null);
if (hasDataFlag) hasDataFlag = (cell.getCellType() != Cell.CELL_TYPE_BLANK);
if (hasDataFlag) {
    // process the cell here
}

或者,您可以使用其他版本的Row.getCell,它采用第二个参数指定缺少的单元格策略。此版本将允许您指定getCell为空白单元格返回空单元格。所以,这里有一些替代代码:

HSSFRow row = sheet.getRow(rowNumber);
if (row != null) {
    HSSFCell cell = row.getCell(cellNumber, Row.RETURN_BLANK_AS_NULL);
    if (cell != null) {
        // process cell here
    }
}

或者,如果您愿意,可以将策略指定为Row.CREATE_NULL_AS_BLANK. 在这种情况下,您将替换if (cell != null)if (cell.getCellType() != Cell.CELL_TYPE_BLANK).

于 2012-06-22T23:37:52.620 回答
5

如果您使用CellIterator,您将仅获得在某个时间点已定义的单元格(没有null单元格,但您将获得blank单元格)。如果要获取所有单元格,请按索引获取它们

按索引,您可以执行以下操作:

 Sheet sheet = workbook.getSheetAt(0);
 for (int rowNumber = sheet.getFirstRowNum(); rowNumber <= sheet.getLastRowNum(); rowNumber++) {
    Row row = sheet.getRow(rowNumber);
    if (row == null) {
         // This row is completely empty
    } else {
         // The row has data
         for (int cellNumber = row.getFirstCellNum(); cellNumber <= row.getLastCellNum(); cellNumber++) {
             Cell cell = row.getCell(cellNumber);
             if (cell == null || cell.getCellType() == Cell.CELL_TYPE_BLANK) {
                 // This cell is empty
             } else {
                 // This cell has data in it
             }
         }
    }
 }
于 2012-06-22T16:27:10.157 回答
2
Cell cell = row.getCell(x, Row.CREATE_NULL_AS_BLANK);

这个技巧让我受益匪浅。看看对你有用吗...

于 2018-02-19T09:37:27.573 回答
0
int column, rownumber = 0; // just for showing the example code

Row row = sheet1.getRow(rownumber); // just for showing the example code

if (row!= null)
    mycell = row.getCell(0);
if (mycell != null && mycell.getCellType() != Cell.CELL_TYPE_BLANK) {
    System.out.println(mycell.getStringCellValue());
}
else{
    System.out.println("whatever");  
}
于 2014-11-17T17:36:42.187 回答
0

公共字符串 getCellData(String File_Name,int Sheet_Num, int Row_Num, int Col_Num) 抛出 IOException{

    FileInputStream fileIn = new FileInputStream(System.getProperty("user.dir")+"\\"+File_Name+".xlsx");
    XSSFWorkbook workbook = new XSSFWorkbook(fileIn);
    XSSFSheet sheet=workbook.getSheetAt(Sheet_Num-1);
    XSSFRow row = sheet.getRow(Row_Num-1);
    XSSFCell cell= row.getCell(Col_Num-1);
    String celldata;
    if(cell!=null){
    celldata= cell.getStringCellValue();
    }
    else 
        celldata ="";
    fileIn.close();
    return celldata;

    }
于 2015-06-17T06:55:17.970 回答