码迷,mamicode.com
首页 > 编程语言 > 详细

java 数字补齐0

时间:2015-02-09 17:34:24      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

String str_f = str.substring(0, 1);
int i = (Integer.parseInt(str.substring(1)) + 1);
// 数字补齐0
DecimalFormat df = new DecimalFormat("0000");
String str_b = df.format(i);
String factory_id = str_f + str_b;
System.out.println(factory_id);

java 数字补齐0

标签:

原文地址:http://www.cnblogs.com/galoishelley/p/4281764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!