java 后台生成16位ID

这是调用了类

public static UniqueTimestamp UT = new UniqueTimestamp();
    	 
    	public static String generateId() {
    		synchronized (UT) {
    			return StringUtils.leftPad(Long.toHexString(UT.getUniqueTimestamp()).toUpperCase(), 16, '1');
    		}
    	}

这个是工具类

package com.fty.util;

public class UniqueTimestamp {
	public static final char PRECISION_MILLISECOND = 'S';
	  public static final char PRECISION_SECOND = 's';
	  public static final char PRECISION_MINUTE = 'm';
	  private char precision = 'S';
	  private long ts = -1L;
	  
	  public UniqueTimestamp() {}
	  
	  public UniqueTimestamp(char prec)
	  {
	    if ((prec != 'S') && (prec != 's') && (prec != 'm')) {
	      throw new IllegalArgumentException("Illegal argument for UniqueTimestamp. Only 'S', 's','m' can be used.");
	    }
	    this.precision = prec;
	  }
	  
	  public synchronized long getUniqueTimestamp()
	  {
	    if (this.ts == -1L)
	    {
	      this.ts = getCurrentTimeValue();
	    }
	    else
	    {
	      long t = getCurrentTimeValue();
	      if (t <= this.ts) {
	        this.ts += 1L;
	      } else {
	        this.ts = t;
	      }
	    }
	    return getReturnValue(this.ts);
	  }
	  
	  private long getCurrentTimeValue()
	  {
	    long ts;
	    switch (this.precision)
	    {
	    case 'S': 
	    default: 
	      ts = System.currentTimeMillis();
	      break;
	    case 's': 
	      ts = System.currentTimeMillis() / 1000L;
	      break;
	    case 'm': 
	      ts = System.currentTimeMillis() / 60000L;
	    }
	    return ts;
	  }
	  
	  private long getReturnValue(long ts)
	  {
	    switch (this.precision)
	    {
	    case 'S': 
	    default: 
	      return ts;
	    case 's': 
	      return ts * 1000L;
	    }
	  }


}

发布了20 篇原创文章 · 获赞 23 · 访问量 4696

猜你喜欢

转载自blog.csdn.net/qq_44758351/article/details/104183652
今日推荐