public static interface NUMBER{
public static String STR_FORMAT = "00000";
static String TOKEN = null;
}
//配资单号格式
public static String AddOne(String code){
Integer intHao = Integer.parseInt(code);
intHao++;
DecimalFormat df = new DecimalFormat(NUMBER.STR_FORMAT);
return df.format(intHao);
}
public static void main(String[] args) {
String code = "ASD0034252345234500001";
String xlh = code.substring(code.length()-5, code.length());
System.out.println("数据库原有的最大序列号:"+xlh);
if(xlh!=null){
System.out.println("累加的新生成的序列号:"+AddOne(xlh));
}else{
System.out.println("最新的新生成的序列号:"+"00001"); //如果没有手动生成一条最小的
}
}
posted on 2015-08-03 11:50
藤本蔷薇 阅读(447)
评论(0) 编辑 收藏