j2se-----numberFormat与DecimalFormat


NumberFormat---数字的格式化显示
NumberFormat nf = NumberFormat.getInstance();//根据本地local获得对应实例
nf.format(10000000); 
nf.format(1000.35485);

DecimalFormat--他是NumberFormat类的子类,可以自定义格式化操作
和SimpleDataFormat类似
String pattern = "###,###.###";//如果数字有多,则直接不要了
String pattern = "000,000.000"; //如果位数不够,则补零,如果数字有多,则直接不要了
DecimalFormat df = new DecimalFormat(pattern);
df.format(12345678911.1235);

你可能感兴趣的:(J2SE)