随笔-71  评论-5  文章-0  trackbacks-0

      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 藤本蔷薇 阅读(443) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。

网站导航: