gpt4 book ai didi

java - 格式化 double 而不是四舍五入

转载 作者:搜寻专家 更新时间:2023-10-30 21:00:23 25 4
gpt4 key购买 nike

我需要将 double 格式化(并且四舍五入)到小数点后两位。

我试过:

String s1 = "10.126";
Double f1 = Double.parseDouble(s1);
DecimalFormat df = new DecimalFormat(".00");
System.out.println("f1"+df.format(f1));

结果:

10.13

但我要求输出为10.12

最佳答案

调用setRoundingMode设置 RoundingMode适本地:

String s1 = "10.126";
Double f1 = Double.parseDouble(s1);
DecimalFormat df = new DecimalFormat(".00");
df.setRoundingMode(RoundingMode.DOWN); // Note this extra step
System.out.println(df.format(f1));

输出

10.12

关于java - 格式化 double 而不是四舍五入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8560632/

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