Java代码生成不重复的32位长的大写字符串

 public static String uuid() {
        return UUID.randomUUID().toString().replace("-", "").toUpperCase();
    }

原文地址:https://www.cnblogs.com/MrQlyn/p/10236314.html