0

从 java 类中,我将值 54666700 导出到 .xlsx 文档。我想将其显示为 54,666,700 美元,但在文档中它应存储为 54666700,即,当我选择该列时,该值应选择为数字 54666700。

至于格式化为货币,我使用下面的代码。

Long newsValue = 54666700
NumberFormat testFormat = NumberFormat.getCurrencyInstance(Locale.US);
testFormat.setMinimumFractionDigits(0);
String currency = testFormat.format(current);
//which will be $54,666,700

我找到了这个库Apache DataFormatter,但无法弄清楚如何在那里获取 CELL 对象。

任何建议/提示表示赞赏。

4

0 回答 0