package cn.miw.hp.test;
public class AutoAddOne {
private static int i=119;//初始值
/**
* 在初始值上自增1
* @return
*/
public static String Plus(){
i++;
String s = "00000"+i;
return s.substring(s.length()-6);
}
/**
* 测试
* @param s
*/
public static void main(String[] s){
System.out.println(Plus());
System.out.println(Plus());
}
}
输出结果
000120
000121
用数字,然后转化为String
OVER
给个标准吧 , 很简单的 。 我给你写出来。