格式,在Java中,双精度数为2小数位,整数为0

我正在尝试将双精度数格式化为精确到小数点后两位小数(如果有分数),然后使用DecimalFormat将其切除

因此,我想取得下一个结果:

100.123 -> 100.12
100.12  -> 100.12
100.1   -> 100.10
100     -> 100

变体#1

DecimalFormat("#,##0.00")

100.1 -> 100.10
but
100   -> 100.00

变体#2

DecimalFormat("#,##0.##")

100   -> 100
but
100.1 -> 100.1

有什么想法在我的情况下选择哪种模式?

解决方法:

我达到的唯一解决方案是使用if语句,如此处所述:https://*.com/a/39268176/6619441

public static boolean isInteger(BigDecimal bigDecimal) {
    int intVal = bigDecimal.intValue();
    return bigDecimal.compareTo(new BigDecimal(intVal)) == 0;
}

public static String myFormat(BigDecimal bigDecimal) {
    String formatPattern = isInteger(bigDecimal) ? "#,##0" : "#,##0.00";
    return new DecimalFormat(formatPattern).format(bigDecimal);
}

测试中

myFormat(new BigDecimal("100"));   // 100
myFormat(new BigDecimal("100.1")); // 100.10

如果有人知道更优雅的方式,请分享!

上一篇:我如何处理小数和大数时的小数精度?


下一篇:PHP中的MySQL DECIMAL处理