/**
* 将元数据前补零,补后的总长度为指定的长度,以字符串的形式返回
* @param sourceDate
* @param formatLength
* @return 重组后的数据
*/
public static String frontCompWithZore(int sourceDate,int formatLength)
{
/*
* 0 指前面补充零
* formatLength 字符总长度为 formatLength
* d 代表为正数。
*/
String newString = String.format("%0"+formatLength+"d", sourceDate);
return newString;
}如:
String newString = String.format("%02d", 5);
System.out.println("newString === "+newString);运行结果:
newString === 05
转自:http://blog.itpub.net/29870867/viewspace-1384004/
本文介绍了一种在Java中实现字符串前补零的方法,该方法通过使用String.format来确保字符串达到指定长度,不足部分用零填充。例如,将数字5转换为字符串“05”。
1458





