可以先判断单元格的类型,有的日期是字符串存储的,有的是按日期存储的(单元格按数字解析),代码如下:
Cell cell = row.getCell();
Date date = null;
if (cell.getCellType() == CellType.STRING){
//按字符串转换日期
}
else if (cell.getCellType() == CellType.NUMERIC) {
date = cell.getDateCellValue();
}
2024-04-11 09:13:43
可以先判断单元格的类型,有的日期是字符串存储的,有的是按日期存储的(单元格按数字解析),代码如下:
Cell cell = row.getCell();
Date date = null;
if (cell.getCellType() == CellType.STRING){
//按字符串转换日期
}
else if (cell.getCellType() == CellType.NUMERIC) {
date = cell.getDateCellValue();
}