1,整数转化为指定长度的字符串,不够补零。
String STR_FORMAT = "000000"; DecimalFormat df = new DecimalFormat(STR_FORMAT); String str=df.format(123); //返回 000123
posted on 2016-09-20 20:43 the_owl 阅读(152) 评论(0) 编辑 收藏 举报