【Java】java 中 数字 转 String 固定位数 不足补零 String.format("%04d", 22); //25为int型 //打印 0022 1. 2. 0代表前面要补的字符 4代表字符串长度 d表示参数为整数类型