17

我正在尝试在 Java 程序中格式化一些数字。这些数字将是双精度数和整数。在处理双打时,我只想保留两个小数点,但在处理整数时,我希望程序不影响它们。换句话说:

双打 - 输入

14.0184849945

双打 - 输出

14.01

整数 - 输入

13

整数 - 输出

13 (not 13.00)

有没有办法在同一个DecimalFormat 实例中实现这一点?到目前为止,我的代码如下:

DecimalFormat df = new DecimalFormat("#,###,##0.00");
DecimalFormatSymbols otherSymbols = new   DecimalFormatSymbols(Locale.ENGLISH);
otherSymbols.setDecimalSeparator('.');
otherSymbols.setGroupingSeparator(',');
df.setDecimalFormatSymbols(otherSymbols);
4

2 回答 2

29

您可以将 设置minimumFractionDigits为 0。像这样:

public class Test {

    public static void main(String[] args) {
        System.out.println(format(14.0184849945)); // prints '14.01'
        System.out.println(format(13)); // prints '13'
        System.out.println(format(3.5)); // prints '3.5'
        System.out.println(format(3.138136)); // prints '3.13'
    }

    public static String format(Number n) {
        NumberFormat format = DecimalFormat.getInstance();
        format.setRoundingMode(RoundingMode.FLOOR);
        format.setMinimumFractionDigits(0);
        format.setMaximumFractionDigits(2);
        return format.format(n);
    }

}
于 2013-04-30T21:57:42.767 回答
4

你能不能把它包装成一个实用程序调用。例如

public class MyFormatter {

  private static DecimalFormat df;
  static {
    df = new DecimalFormat("#,###,##0.00");
    DecimalFormatSymbols otherSymbols = new   DecimalFormatSymbols(Locale.ENGLISH);
    otherSymbols.setDecimalSeparator('.');
    otherSymbols.setGroupingSeparator(',');
    df.setDecimalFormatSymbols(otherSymbols);
  }

  public static <T extends Number> String format(T number) {
     if (Integer.isAssignableFrom(number.getClass())
       return number.toString();

     return df.format(number);
  }
}

然后,您可以执行以下操作:MyFormatter.format(int)等。

于 2013-04-30T21:32:24.880 回答