int i = 1;
String no=String.format("%05d",i);
Integer max = Integer.parseInt(no)+1;
Integer与String 互转00001方式
最新推荐文章于 2023-03-08 13:09:17 发布
int i = 1;
String no=String.format("%05d",i);
Integer max = Integer.parseInt(no)+1;