以下のコードを使用して、Excelセルから数値を変換し、テキストファイルに保存しています。(アパッチポイ)
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