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

生成唯一的随机数(时间+随机数)

时间:2018-03-15 15:18:49      阅读:847      评论:0      收藏:0      [点我收藏+]

标签:static   gen   使用   set   rand   new   post   重复   utils   

package com.st.utils;

import java.util.Random;

/**
 *@Author Mr.Li
 *@Date 2018/3/10 23:42
 *@Description 生成唯一的主键 随机数
 * 格式 : 时间+随机数
 * synchronized 为保证多线程时不重复
 */
public class KeyUtil {

    public static synchronized String genUniqueKey(){

        Random random = new Random();

        Integer number = random.nextInt(900000) + 100000;

        return System.currentTimeMillis() + String.valueOf(number);
    }

//    public static void main(String[] args) {
//        String uniqueKey = genUniqueKey();
//        System.out.println(uniqueKey);
//    }
    
}

 

使用时,直接调用生成随机数。如下:

orderDetail.setDetailId(KeyUtil.genUniqueKey());

 

生成唯一的随机数(时间+随机数)

标签:static   gen   使用   set   rand   new   post   重复   utils   

原文地址:https://www.cnblogs.com/QW-lzm/p/8573469.html

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