xiaoyong931011
2020-11-20 4c4d1e52ee25f9d77c132144521df6694cd8e63e
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("-", "");
    }
 
}