// 1为 int 类型、0代表前面要补位的字符、2代表字符串的长度、d表示参数为整数类型
String num = String.format("%02d", 1);
System.out.println(String.format("%04d", 125));//0125
// 1为 int 类型、0代表前面要补位的字符、2代表字符串的长度、d表示参数为整数类型
String num = String.format("%02d", 1);
System.out.println(String.format("%04d", 125));//0125
本文标题:Java 不足位数前面补0
本文链接:https://www.haomeiwen.com/subject/hkgchltx.html
网友评论