XL读取Excel日期时间多出了8个小时. Cell c = rs.getCell(j, i); if (c.getType() == CellType.DATE) {//手动填写模板文件时为 date 类型,其他情况有可能不是date类型 DateCell dc = (DateCell) c; Date date = dc.getDate();
这个数字是什么呢?是以1900年为原点,到2015年8月21日,之间经过的天数. 知道这个后,就很好处理了,我们拿到1900年的日期,在这个日期上加上42237天即可.如下: Calendar calendar = new GregorianCalendar(1900,0,-1); Date d = calendar.getTime(); Date date = DateUtils.addDays(d,Integer.valueOf(“42237”));