在 Java 中使用 DecimalFormat 打印 0.0


public static void main(String[] args) {
DecimalFormat df = new DecimalFormat("#.0");
System.out.println(df.format(180.0)); // prints 180.0
System.out.println(df.format(0.0)); // prints .0 BUT I want 0.0
}

如何更改十进制格式 df = 新的十进制格式("#.0"(;构造函数参数,以便我可以打印 0.0???

尝试

DecimalFormat df = new DecimalFormat("0.0");
System.out.println(df.format(0.0));

通过使用

#.0

您自己省略了前导 0。

new DecimalFormat("0.0")就可以了。

相关内容

  • 没有找到相关文章

最新更新