如果不是零,则格式化float以显示小数位

时间:2016-07-17 17:59:25

标签: java regex floating-point decimalformat

我需要显示浮点值的小数位,只有当它与零不同时才会显示。

  1. 5.0 应显示为 5
  2. 7.3 应显示为 7.3
  3. 9.000003 应显示为 9.000003
  4. 如何使用正则表达式或DecimalFormat以这种方式格式化?

1 个答案:

答案 0 :(得分:7)

要以您希望的方式显示小数,请使用以下代码段:

// This is to show symbol . instead of ,
DecimalFormatSymbols otherSymbols = new DecimalFormatSymbols(Locale.US);
// Define the maximum number of decimals (number of symbols #)
DecimalFormat df = new DecimalFormat("#.##########", otherSymbols);

// type: double
System.out.println(df.format(5.0)); // writes 5
System.out.println(df.format(7.3)); // writes 7.3
System.out.println(df.format(9.000003)); // writes 9.000003

// type: float
System.out.println(df.format(9.000003f)); // writes 9.000002861