int str1=100;
DecimalFormat df=new DecimalFormat("00000");
String str2=df.format(str1);
System.out.println(str2);
数字前补充位数
最新推荐文章于 2023-05-15 21:48:37 发布
int str1=100;
DecimalFormat df=new DecimalFormat("00000");
String str2=df.format(str1);
System.out.println(str2);