获取八位UUID标识码

 public static String[] chars = new String[]
      {
          "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
          "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
          "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"
      };

  public static String getShortUuid() {
    StringBuffer stringBuffer = new StringBuffer();
    String uuid = UUID.randomUUID().toString().replace("-", "");
    for (int i = 0; i < 8; i++) {
      String str = uuid.substring(i * 4, i * 4 + 4);
      int strInteger = Integer.parseInt(str, 16);
      stringBuffer.append(chars[strInteger % 0x3E]);
    }

    return stringBuffer.toString();
  }

posted on 2016-01-19 15:17 Mr.lu 阅读(3364) 评论(0)  编辑  收藏


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


网站导航:
 
<2016年1月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

导航

统计

常用链接

留言簿(2)

随笔档案

文章档案

搜索

最新评论

阅读排行榜

评论排行榜