格式,Java 中双精度和整数的 2 位小数和 0

2022-01-15 00:00:00 format decimal java decimalformat

如果它有分数,我正在尝试将双精度格式化为精确的 2 位小数,否则使用 DecimalFormat 将其截断

I am trying to format a double to exact 2 decimal places if it has fraction, and cut it off otherwise using DecimalFormat

所以,我想实现下一个结果:

So, I'd like to achieve next results:

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

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

Have any ideas what pattern to choose in my case?

推荐答案

我达到的唯一解决方案是使用这里提到的 if 语句:https://stackoverflow.com/a/39268176/6619441

The only solution i reached is to use if statement like was mentioned here: https://stackoverflow.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

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

If someone knows more elegant way, please share it!

相关文章