Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DecimalFormat我想知道是否可以在不使用或为此导入任何内容的情况下将双精度格式舍入到小数点后两位并使用尾随零?在过去的半小时里,我一直在想一个,但我无法弄清楚。
DecimalFormat
您可以使用 String.format();
String s = String.format("my double: %.2f", 3.54123); System.out.println(s);
或直接 printf
System.out.printf("my double: %.2f%n", 3.54123);
怎么样 ?
(((int)(number * 100))/100.0F)
例子