java根据长度获取不带“-”的UUID

2024-01-10 16:10:15

java根据长度获取不带“-”的UUID

    public static String getSimpleUUID() {
        return UUID.randomUUID().toString().replaceAll("-", "");
    }

    public static String getSimpleUUID(int len) {
        if (0 >= len) {
            return null;
        }
        String uuid = getSimpleUUID();
        if (len >= uuid.length()) {
            return uuid;
        }
        StringBuilder str = new StringBuilder();
        for (int i = 0; i < len; i++) {
            str.append(uuid.charAt(i));
        }
        return str.toString();
    }

文章来源:https://blog.csdn.net/weixin_47315082/article/details/135504179
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。