1,整数转化为指定长度的字符串,不够补零。
String STR_FORMAT = "000000"; DecimalFormat df = new DecimalFormat(STR_FORMAT); String str=df.format(123); //返回 000123