我正在使用apache poi 3.5从excel sheet.i中提取数据,日期单元格格式为mm / dd / yyyy。
如果我使用cell.getDateCellValue()打印,则以其他格式打印日期。因此,我想打印excel表单元格的实际格式的日期。
我是怎么做的......请指导我这样做....
Saravanan
答案 0 :(得分:6)
只需调用formatCellValue(Cell)
类中的方法formatCellValue(cell, formulaEvaluator)
,DataFormatter
即可。它将打印excel表中的值。
formatCellValue(cell, formulaEvalator)
......