xiaoyong931011
2020-11-30 78d39c4e43c80ea16cc96dc73d60c8880ac5020d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.utils;
 
import java.util.UUID;
 
 
public class UUIDUtil {
 
    /**
     * 获取一个32位的随机字符串
     * 
     * @author JIANGYOUYAO
     * @email 935090232@qq.com
     * @date 2017年11月30日
     * @return
     */
    public static String getRandomID() {
        return UUID.randomUUID().toString().replace("-", "");
    }
 
}