使用Apache POI将Excel文件转换为文本文件时,单元格值会发生变化

时间:2013-09-23 09:39:42

标签: java apache-poi

我使用下面的代码来转换Excel单元格中的数值。存储在文本文件中。 (apache poi)

DataFormatter dfrmt = new DataFormatter();
case Cell.CELL_TYPE_NUMERIC:
data.append(dfrmt.formatCellValue(cell));
带有此数值的

正在转换并存储在文件中, 但问题是当单元格值从零开始时。

Cell Value : 456789   Value in text file : 456789 :: Correct.
Cell Value : 001234   Value in text file : 1234 :: Incorrect.

我想要的是如果excel中的值从零开始,它在文本文件中也应该相同

Cell Value : 001234   Value in text file : 001234 :: this is required

0 个答案:

没有答案