Excel中的空单元格返回Null(Java,POI)

时间:2018-03-20 12:04:42

标签: java excel apache-poi

我希望显示Excel中的值。我的问题是我不知道为什么我会得到" null"同样。

enter image description here

1 个答案:

答案 0 :(得分:1)

您正在获取单元格对象。进行空检查并访问单元格的 - 如下所示:

Cell cell = rowAmt.getCell(0);
if (cell != null) {
    System.out.println(cell.getStringCellValue());
    /*
     * for numbers: cell.getNumericCellValue();
     * for booleans: cell.getBooleanCellValue();
     */
}