Java 数字格式 - #.## - Windows 和 Linux

发布于 2024-12-08 02:42:24 字数 279 浏览 0 评论 0原文

我正在使用以下代码来格式化双数字

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日记撕了你也走了 2024-12-15 02:42:24

这里似乎回答了一个非常相似的问题( 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文