我想四舍五入
0.005 to 0.01
我正在使用此代码
DecimalFormat df = new DecimalFormat("0.00");
但是答案一直在
0.00
如果可能的话,我只希望右边的两位数字四舍五入
有人有主意吗?
最佳答案
您应该为DecimalFormat添加RoundingMode
double d = 0.005;
DecimalFormat df = new DecimalFormat("0.00");
df.setRoundingMode(RoundingMode.HALF_UP);
System.out.println(df.format(d)); //0.01
关于java - 如何在Java中舍入DecimalFormat(Android),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10518981/