我正在尝试使用十进制格式显示小数的前导零...我的代码如下:
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.text.ParseException;
public class ElementValueUtil {
public static String formatDoubleNonExponential(double value) {
return formatDoubleNonExponential(value, null);
}
public static String formatDoubleNonExponential(double value, String elementName) {
DecimalFormat decimalFormat = new DecimalFormat();
Integer decimalPrecision = 5;
decimalFormat.setMaximumFractionDigits(decimalPrecision);
decimalFormat.setRoundingMode(RoundingMode.HALF_UP);
String exponentialNum = decimalFormat.format(value);
try{
return String.valueOf(decimalFormat.parse(exponentialNum));
}catch(ParseException exception){
return String.valueOf(value);
}
}
public static void main(String[] args) {
Double num = 12.4567012;
System.out.println(formatDoubleNonExponential(num));
}
}
我的输出为“12.4567”但我期待“12.45670”
任何帮助将不胜感激...
注意:整数部分可能有任意位数,也可能没有任何位数……但如果小数部分超过 5 位小数,则小数部分应四舍五入到 5 位小数
For example
Input Output
12.25 12.25
125.2345 125.2345
12.12340675 12.12341
12.12340123 12.12340