Java 数字格式 - #.## - Windows 和 Linux
我正在使用以下代码来格式化双数字
DecimalFormat decimalFormat=new DecimalFormat("#.##");
decimalFormat.format(1.04)
,但这
java.lang.NumberFormatException: For input string: "1,04"
在 Linux 中给出 - 但在 Windows 7 中这工作正常,如何纠正这个问题?
I'm using following code to format Double number
DecimalFormat decimalFormat=new DecimalFormat("#.##");
decimalFormat.format(1.04)
but this gives
java.lang.NumberFormatException: For input string: "1,04"
in Linux - but in Windows 7 this works fine, how to correct this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里似乎回答了一个非常相似的问题( DecimalFormat and Double.valueOf() ) java数字格式。基本上,您遇到的差异可能与 Windows 上定义的区域设置与 Linux 上定义的区域设置不同有关(例如:在 Windows 上,您将其配置为与 Linux 不同的国家/语言)。
There seems to be a very similar question answered here ( DecimalFormat and Double.valueOf() ) about the java number format. Basically the diference you are experiencing may be related to the Locale Settings defined on Windows being different to the Linux one (for example: on Windows you configured it to a contry/language different then the linux one).