How can I fix this method that convert Number in String to show the correct number of decimal digits?
我有以下问题。
我正在使用这种方法将数字(作为 BigDecimal)转换为格式化字符串:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | /** * @param n il Number da formattare * @param thou_sep separator for hundreds * @param dec_sep separator for decimal digits * @param number of decimal digits to show * @return a string representing the number * @author Andrea Nobili */ public static String getFormattedNumber(Number n, String thou_sep, String dec_sep, Integer decimalDigits) { if (n == null) return""; double value = n.doubleValue(); if (decimalDigits != null && decimalDigits < 0) throw new IllegalArgumentException("[" + decimalDigits +" < 0]"); DecimalFormatSymbols s = new DecimalFormatSymbols(); if (thou_sep != null && thou_sep.length() > 0) { s.setGroupingSeparator(thou_sep.charAt(0)); } if (dec_sep != null && dec_sep.length() > 0) { s.setDecimalSeparator(dec_sep.charAt(0)); } DecimalFormat f = new DecimalFormat(); f.setDecimalFormatSymbols(s); if (thou_sep == null || thou_sep.length() == 0) { f.setGroupingUsed(false); } if (decimalDigits != null) { f.setMaximumFractionDigits(decimalDigits); } f.setMaximumIntegerDigits(Integer.MAX_VALUE); String formattedNumber = f.format(value); return ("-0".equals(formattedNumber)) ?"0" : formattedNumber; } |
例如,如果我调用类似:
1 | utilityClass.getFormattedNumber(57.4567, null,",", 2) |
我得到字符串 57,45
好的,这很好。
我的问题是,如果我尝试使用没有十进制数字的数字执行它(例如传递值 57,它会返回字符串 57。我希望在这种情况下它返回字符串 57.00(因为我已经指定我希望此方法的输入参数中有 2 个十进制数字)
如何解决此问题并获得正确的小数位数?
您可以使用 DecimalFormat setMinimumFractionDigits 并将其设置为与最大值相同。
尝试设置最小小数位数和最大小数位数。
1 2 | f.setMaximumFractionDigits(decimalDigits); f.setMinimumFractionDigits(decimalDigits); |
DecimalFormat 的 Java 文档
对于 DecimalFormat,您可以使用需要模式的构造函数。在您的模式中,如果不需要打印零(例如小数点后),则
1 | #,###,###.## |
只有在需要 0.54 或 0.3 但不是整数时才会显示零。
1 | #,###,###.00 |
将显示尾随零,最多 2 位小数,例如 2.50 或 79.00。