当前位置: 代码迷 >> 综合 >> DecimalFormat 格式化数据
  详细解决方案

DecimalFormat 格式化数据

热度:73   发布时间:2023-12-21 19:51:35.0

DecimalFormat 格式化数据

这里需要注意的是,#和0的区别,如果是#则不会总动补零,是0则会自动补零

public static void main(String[] args) {
//保留两位小数,不够不补零
DecimalFormat a = new DecimalFormat(".##");
String s = a.format(3333.4);
System.out.println(s);

// 保留两位小数,不够补零
a.applyPattern(".00");
s = a.format(33.3);
System.out.println(s);

// 千分之几
a.applyPattern(".##\u2030");
s = a.format(0.78934);
System.err.println(s);

// 百分之几
a.applyPattern("#.##%");
s = a.format(0.78645);
System.err.println(s);

// 与jstl中fmt格式化数字一样,每三位逗号分隔
a.applyPattern(",###.#");
s = a.format(33333333333.333);
System.out.println(s);
}


结果:

3333.4
33.30
789.34‰
78.64%
33,333,333,333.3