All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sgota.commons.utils.UUIDUtil Maven / Gradle / Ivy

The newest version!
package com.sgota.commons.utils;

import java.util.UUID;

/**
 * 工具类-UUID
 *
 * @author tiankuo
 */
public class UUIDUtil {

    /**
     * 构造方法
     */
    private UUIDUtil(){
    }

    public static String generate() {
        return UUID.randomUUID().toString();
    }

    public static String generateShort() {
        return generate().replace("-", "");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy