我正在使用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;
}