gpt4 book ai didi

java - 如何用点格式化 double ?

转载 作者:IT老高 更新时间:2023-10-28 20:44:46 27 4
gpt4 key购买 nike

如何将带有 String.format 的 Double 格式化为在整数和小数部分之间加点​​的字符串?

String s = String.format("%.2f", price);

以上格式只用逗号:","。

最佳答案

String.format(String, Object ...) 正在使用您的 JVM 的默认语言环境。您可以使用 String.format(Locale, String, Object ...)java.util.Formatter 来使用任何语言环境。直接。

String s = String.format(Locale.US, "%.2f", price);

String s = new Formatter(Locale.US).format("%.2f", price);

// do this at application startup, e.g. in your main() method
Locale.setDefault(Locale.US);

// now you can use String.format(..) as you did before
String s = String.format("%.2f", price);

// set locale using system properties at JVM startup
java -Duser.language=en -Duser.region=US ...

关于java - 如何用点格式化 double ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5182451/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com