使用 String.format 的 Java 十进制格式?

2022-01-12 00:00:00 decimal formatting java

我需要将一个十进制值格式化为一个字符串,我总是显示至少 2 个小数,最多 4 个.

I need to format a decimal value into a string where I always display at lease 2 decimals and at most 4.

例如

"34.49596" would be "34.4959" 
"49.3" would be "49.30"

这可以使用 String.format 命令完成吗?
或者在 Java 中有没有更简单/更好的方法来做到这一点.

Can this be done using the String.format command?
Or is there an easier/better way to do this in Java.

推荐答案

你想要java.text.DecimalFormat.

You want java.text.DecimalFormat.

DecimalFormat df = new DecimalFormat("0.00##");
String result = df.format(34.4959);

相关文章