我在Wicket中的格式编号有问题。在textfiled中只能输五位数 - (xxxxx)如果我把数字小于五位数就像10那样它可以自动改变像00010这样的格式为零。我怎么能这样做?谢谢你的建议。
答案 0 :(得分:1)
public static String leadingZeros(int value, int returnSize){
int size = (int) Math.log10(value)+1;
if (size > returnSize){
return String.valueOf(value).substring(size-returnSize);
}
StringBuilder string = new StringBuilder();
for (int i=returnSize; i>size;i--){
string.append("0");
}
string.append(value);
return string.toString();
}
示例:
System.out.println(leadingZeros(123,5));
--> 00123
System.out.println(leadingZeros(123456789,5));
--> 56789