Java使用String.format()实现补零

判断字符串长度,不够9位,在前面补0

String.format("%09d", Integer.valueOf("123"))

输出结果:000000123

你可能感兴趣的:(JAVA)