Java代码生成不重复的32位长的大写字符串
public static String uuid() {
return UUID.randomUUID().toString().replace("-", "").toUpperCase();
}
public static String uuid() {
return UUID.randomUUID().toString().replace("-", "").toUpperCase();
}