我使用apache poi库来读取excel文件.我在阅读密码单元时被卡住.如果用户在密码单元格中输入日期,即16/05/2012.我正在读取这个值为“41045”,而值应为“16/05/2012”.这是我的代码:
cell = row.getCell(); // date in the cell password '16/05/2012' switch (cell.getCellType()) { case HSSFCell.CELL_TYPE_STRING: cellValue = cell.getRichStringCellValue().getString(); break; case HSSFCell.CELL_TYPE_NUMERIC: if(cellCount == TEMPLATE_PASSWORD) {// if cell is password cell.setCellType(Cell.CELL_TYPE_STRING); cellValue = cell.getRichStringCellValue().getString(); // value read is 41045 and not "16/05/2012" } break; default: }
有人可以帮忙吗?
谢谢.