Format double to 2 decimal places with leading 0s
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Round a double to 2 significant figures after decimal point
我正试图用前导零将小数点后两位改为小数点后两位,但运气不好。这是我的代码:
1 2 3 | Double price = 32.0; DecimalFormat decim = new DecimalFormat("#.##"); Double price2 = Double.parseDouble(decim.format(price)); |
我希望输出是
想zeroes领先了。如果你的案例,然后根据tofubeer:
1 |
编辑:
记住,我们在谈论这里的格式编排数、槽内部表示的数。
1 2 3 4 | Double price = 32.0; DecimalFormat decim = new DecimalFormat("0.00"); Double price2 = Double.parseDouble(decim.format(price)); System.out.println(price2); |
将打印
在这个重量,我认为你的
试试这个:
1 |