生成5位序列号

来源:互联网 发布:域名一般多少钱 编辑:程序博客网 时间:2024/05/21 14:02
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"); //如果没有手动生成一条最小的       }  }



转自【http://www.blogjava.net/kokosang/archive/2015/08/03/426557.html】

0 0