我正在使用Apache poi阅读excel数据如下
while (rowIterator.hasNext()) {
Row row = rowIterator.next();
String date_time=row.getCell(0).toString();
System.ou.println(date_time);
}
当我阅读13/01/2017 10:11:18
输出时13/01/2017 10:11:18
这是可以的,但是当我尝试阅读12/1/2017 21:17
时输出错误为01-Dec-2017
而不是12/1/2017 21:17
}
怎么解决这个?
答案 0 :(得分:0)
也许[12/1/2017 21:17]在excel中有[01-Dec-2017]不同的格式格式,但看起来像[12/1/2017 21:17]