Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我jxls用于从 excel 文件中读取数据。但是当我试图读取一个数字时出现了问题:除非我将此列的格式设置为,否则12345678912它将被转移到。1.2345678E10Text
jxls
12345678912
1.2345678E10
Text
在不将列设置为 的情况下,我可以做些什么来解决这个问题Text?
任何帮助将不胜感激。
我遇到了同样的问题..你可以通过使用来解决这个NumberEval问题org.apache.poi
NumberEval
org.apache.poi
找到下面的代码
NumberEval t=new NumberEval(1.2345678E10); String temp= t.getStringValue(); //will give you exact string value and you can cast it to long