强制点(“。”)作为小数分隔符在java中 [英] Force point (".") as decimal separator in java

查看:81
本文介绍了强制点(“。”)作为小数分隔符在java中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前使用以下代码打印一个double:

I currently use the following code to print a double:

return String.format("%.2f", someDouble);

这样做很好,除了Java使用我的Locale的小数分隔符(逗号),而我想用一点有没有办法做到这一点?

This works well, except that Java uses my Locale's decimal separator (a comma) while I would like to use a point. Is there an easy way to do this?

推荐答案

使用 String.format ,它允许您指定区域设置:

Use the overload of String.format which lets you specify the locale:

return String.format(Locale.ROOT, "%.2f", someDouble);

如果你只是格式化一个数字 - 就像你在这里一样 - 那么使用 NumberFormat 可能会更合适。但是,如果您需要 String.format 的其余格式化功能,则应该可以正常运行。

If you're only formatting a number - as you are here - then using NumberFormat would probably be more appropriate. But if you need the rest of the formatting capabilities of String.format, this should work fine.

这篇关于强制点(“。”)作为小数分隔符在java中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆