如何防止 String.format("%.2f", doubleValue); 舍入(四舍五入算法)而不是截断它?
How do I prevent String.format("%.2f", doubleValue); from rounding off (round half up algorithm) instead of just truncating it?
例如
doubleValue = 123.459
格式化后,
doubleValue = 123.46
我只想丢弃最后一位,
123.45
我知道还有其他方法可以做到这一点,我只想知道这是否可以使用 String.format.
I know there are other ways to do this, I just want to know if this is possible using the String.format.
你可以随时设置舍入模式:
You can always set the rounding mode:
http://java.sun.com/javase/6/docs/api/java/math/RoundingMode.html
然后使用 String.Format()默认使用 HALF_EVEN,但您可以将其更改为 CEILING
and then use String.Format() HALF_EVEN is used by default, but you can change it to CEILING
另一种不太灵活的方法是(但这不是你问的):
another no so flexible approach will be (but this is not what you asked about):
DecimalFormat df = new DecimalFormat("###.##");
df.format(123.459);
这篇关于防止 Java 中 String.format("%.2f", doubleValue) 的舍入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)