码迷,mamicode.com
首页 > 数据库 > 详细

数据库主键按照固定前缀生成工具类

时间:2018-01-21 10:59:16      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:ble   gen   tin   部分   ati   substring   span   table   ++   

package com.sc.util;

public class TableIdGenerator {

    /**
     * str必填,形如SUA0000046
     * beginIndex必填,从英文字符开始的位数,例如SUA0000046,就是从3开始
     * @param str
     * @param beginIndex
     * @return
     */
     public static String generatorId(String str,int beginIndex) {
        String leftStr=str.substring(0,beginIndex);//前半部分英文字符
        String rigthtStr=str.substring(beginIndex);//前半部分数字字符
        int len=rigthtStr.length();//数字总位数
        int rightInt=Integer.parseInt(rigthtStr)+1;
        String s=rightInt+"";
        int len1=s.length();
        
        
        if(len>len1){
            int i=len-len1;
            for (int j = 0; j < i; j++) {
                leftStr+="0";
            }
            leftStr+=rightInt;
        }else{
            leftStr+=rightInt;
        }
        return leftStr;
        
     }
     
     public static void main(String[] args) {
        String s= TableIdGenerator.generatorId("RW_0009", 3);
        System.out.println(s);
    }
    
}

 

数据库主键按照固定前缀生成工具类

标签:ble   gen   tin   部分   ati   substring   span   table   ++   

原文地址:https://www.cnblogs.com/javahr/p/8323472.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!