扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
代码如下:
永昌网站建设公司创新互联公司,永昌网站设计制作,有大型网站制作公司丰富经验。已为永昌上千余家提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的永昌做网站的公司定做!
public static void main(String[] args) {
System.out.println(addZeroForLeft(1001, 6));
System.out.println(addZeroForLeft("abcd", 6));
}
/**
* @描述: 整数前面补0
* @param number 原始整数
* @param formatLength 指定要格式化的长度
* @return 补0后的字符串
*/
private static String addZeroForLeft(int number, int formatLength) {
// 补0操作
return String.format("%0" + formatLength + "d", number);
}
/**
* @描述: 字符串前面补0
* @param str 原始字符串
* @param formatLength 指定要格式化的长度
* @return 补0后的字符串
*/
private static String addZeroForLeft(String str, int formatLength) {
int strLength = str.length();
if (formatLength > strLength) {
// 计算实际需要补0长度
formatLength -= strLength;
// 补0操作
str = String.format("%0" + formatLength + "d", 0) + str;
}
return str;
}
效果如下:
001001
00abcd
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流