java 生成 序列号 随机字符串等

 

生成序列号尤其要注意的是高并发时候序列号重复和抢占带来的唯一ID问题:

private static int maxvaluefive=99999999;
 private static int minvaluefive=0;
 private static AtomicInteger atomic = new AtomicInteger(minvaluefive);
 /**  生成序列号 */
 static String getSeqFive(int coverPad) {
        for (;;) {
            int current = atomic.get();
            int newValue = current >= maxvaluefive ? minvaluefive : current + 1;
            if (atomic.compareAndSet(current, newValue)) {
                return StringUtils.leftPad(String.valueOf(current), coverPad, "0");
            }
        }
    }


 

使用的时候可以与时间以及其他业务编号结合使用保证序列的唯一性:比如生成订单号,流水号等


 

 private static Random strGen = new Random();;
 private static Random numGen = new Random();;
 private static char[] numbersAndLetters = ("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ").toCharArray();;
 private static char[] numbers = ("0123456789").toCharArray();;
 /** * 产生随机字符串 * */
 public static final String randomString(int length) {
  if (length < 1) {
   return null;
  }
  char[] randBuffer = new char[length];
  for (int i = 0; i < randBuffer.length; i++) {
   randBuffer[i] = numbersAndLetters[strGen.nextInt(61)];
  }
  return new String(randBuffer);
 }

 /** * 产生随机数值字符串 * */
 public static final String randomNumStr(int length) {
  if (length < 1) {
   return null;
  }
  char[] randBuffer = new char[length];
  for (int i = 0; i < randBuffer.length; i++) {
   randBuffer[i] = numbers[numGen.nextInt(9)];
  }
  return new String(randBuffer);
 }

 

方便随手使用

原文链接  http://blog.csdn.net/zl378837964/article/details/40394459


 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
public synchronized String nextId() { long timestamp = timeGen(); //获取当前毫秒数 //如果服务器时间有问题(时钟后退) 报错。 if (timestamp < lastTimestamp) { throw new RuntimeException(String.format( "Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp)); } //如果上次生成时间和当前时间相同,在同一毫秒内 if (lastTimestamp == timestamp) { //sequence自增,因为sequence只有12bit,所以和sequenceMask相与一下,去掉高位 sequence = (sequence + 1) & sequenceMask; //判断是否溢出,也就是每毫秒内超过4095,当为4096时,与sequenceMask相与,sequence就等于0 if (sequence == 0) { timestamp = tilNextMillis(lastTimestamp); //自旋等待到下一毫秒 } } else { sequence = 0L; //如果和上次生成时间不同,重置sequence,就是下一毫秒开始,sequence计数重新从0开始累加 } lastTimestamp = timestamp; long suffix = (datacenterId << datacenterIdShift) | (workerId << workerIdShift) | sequence; String datePrefix = DateFormatUtils.format(timestamp, "yyyyMMddHHMMssSSS"); return datePrefix + suffix; } protected long tilNextMillis(long lastTimestamp) { long timestamp = timeGen(); while (timestamp <= lastTimestamp) { timestamp = timeGen(); } return timestamp; } protected long timeGen() { return System.currentTimeMillis(); } private byte getLastIP(){ byte lastip = 0; try{ InetAddress ip = InetAddress.getLocalHost(); byte[] ipByte = ip.getAddress(); lastip = ipByte[ipByte.length - 1]; } catch (UnknownHostException e) { e.printStackTrace(); } return lastip; }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值