码迷,mamicode.com
首页 > 其他好文 > 详细

生成唯一标识符 ,通用唯一标识符 UUID

时间:2017-12-08 23:01:03      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:生成   通用   style   nal   throws   java   一个   ring   replace   

 1 import java.util.UUID;
 2 
 3 /**
 4  * UUID生成工具
 5  * 
 6  */
 7 
 8 public final class UuidGenUtils {
 9 
10     /**
11      * 生成一个UUID串(32个字符,其中的字母为小写)
12      * @return
13      * @throws
14      */
15     public static String genUUID() {
16         return UUID.randomUUID().toString().replaceAll("-", "");
17     }
18 }

 

生成唯一标识符 ,通用唯一标识符 UUID

标签:生成   通用   style   nal   throws   java   一个   ring   replace   

原文地址:http://www.cnblogs.com/shenjiangwei/p/8007126.html

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