org.hepeng.commons.util.UUIDUtils Maven / Gradle / Ivy
The newest version!
package org.hepeng.commons.util;
import java.util.UUID;
/**
* @author he peng
*/
public class UUIDUtils {
private UUIDUtils() {}
/**
* 生成 32 位长度的 uuid 字符串
* @return 返回长度为 32 位的 uuid 字符串
*/
public static String uuid32() {
return UUID.randomUUID().toString().replaceAll("-" , "");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy