如何格式化带有点的双精度数?
如何将带有 String.format
的 Double 格式化为在整数和小数部分之间有一个点的 String?
String s = String.format("%.2f", price);
上面的格式只包含一个逗号:“,”。
How do I format a Double with String.format
to String with a dot between the integer and decimal part?
String s = String.format("%.2f", price);
The above formats only with a comma: ",".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
String.format(String, Object ...)
使用 JVM 的默认区域设置。您可以使用String.format(Locale, String, Object ...)
或java.util.Formatter
直接。或
或
或
String.format(String, Object ...)
is using your JVM's default locale. You can use whatever locale usingString.format(Locale, String, Object ...)
orjava.util.Formatter
directly.or
or
or
基于此 post 你可以这样做,它在 Android 7.0 上适用于我
这种方式你可以根据你的
区域设置
添加点和逗号感谢 Kevin van Mierlo 评论编辑和修复了答案
Based on this post you can do it like this and it works for me on Android 7.0
This way you have dot and comma based on your
Locale
Answer edited and fixed thanks to Kevin van Mierlo comment
如果它的工作方式与 PHP 和 C# 中的相同,您可能需要以某种方式设置您的区域设置。可能会在 Java 国际化常见问题解答中找到更多相关信息。
If it works the same as in PHP and C#, you might need to set your locale somehow. Might find something more about that in the Java Internationalization FAQ.