空白和空白检查excel单元格值和设置数据在Java中不起作用

时间:2017-08-10 12:17:02

标签: java apache-poi

我正在使用POI和Java从Excel读取数据。

我的Java代码:

public MyObject setMyData(MyObject myObject)(

    myObject.setLang(row.getCell(++cellInd).getStringCellValue()); 

    // like above many more values are set with different datatypes

}

这是在设置值时抛出错误,因为单元格为空。

 public boolean checkNullBlankValueOfCell(Cell cell) {

    if (cell.getCellType() == Cell.CELL_TYPE_BLANK) {
        return false;
    }

    return true;
}

0 个答案:

没有答案