我正在使用 apache poi 从 excel 文件中读取,但是当涉及到空单元格时,它会跳过单元格。为什么会这样?我已经设置了一个 if else 条件来捕捉它。这是我的代码:
while (cellIterator.hasNext()) {
cell = (XSSFCell) cellIterator.next();
if(cell.getCellType() == Cell.CELL_TYPE_NUMERIC)
{
if(DateUtil.isCellDateFormatted(cell))
{