使用 Apache POI 在 Excel 单元格中写入数字
如何在 poi 的帮助下在单元格中写入我的完整值?
即如果值是 1000.000 那么我怎样才能写出这个完整的值而不在“.”之后截断 000与兴趣点?意味着我想要完整的价值。
就我而言,只需要 1000,但这对我来说不是正确的格式。
How can I write my full value in cell with help of poi ?
i.e. if value is 1000.000 then how can I write this full value without truncating 000 after "." with POI? means I want full value.
In my case, it only takes 1000 but this is not right format for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须设置存储该数字的单元格的“格式”。示例代码:
来源:http://poi.apache.org/spreadsheet/quick-guide.html#DataFormats
You have to set "Format" of the cell where this number is getting stored. Example code:
Source : http://poi.apache.org/spreadsheet/quick-guide.html#DataFormats