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

生成唯一的ID

时间:2019-09-12 17:59:58      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:and   rand   string   nbsp   span   get   hash   bsp   生成   

public class UniqueId {

    public static String getUUId(){
        int machineld = 1;
        int hashCodeV = UUID.randomUUID().toString().hashCode();
        if(hashCodeV<0){
            hashCodeV = - hashCodeV;
        }
        return  machineld+String.format("%015d",hashCodeV);
    }
}

 

生成唯一的ID

标签:and   rand   string   nbsp   span   get   hash   bsp   生成   

原文地址:https://www.cnblogs.com/baizhuang/p/11513154.html

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