2019独角兽企业重金招聘Python工程师标准>>>
java 数字 保留小数点——数字、字符串格式化。保留小数点
1.Decimalformat df1 = new Decimalformat("####.000");
System.out.println(df1.format(2324.16));
显示:2324.160
2.Numberformat nf = Numberformat.getPercentInstance();
System.out.println(nf.format(0.43));
显示:43%
3.DecimalFormat df = new DecimalFormat("###,##0.00");
System.out.println(nf.format(24.7));
显示:24.70
System.out.println(nf.format(2321123.47));
显示:2321,123.47