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

dream.first.core.utils.IDUtils Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
/**
 * 
 */
package dream.first.core.utils;

import java.util.UUID;

/**
 * @since 1.0.0
 */
public class IDUtils {

	/**
	 * 获取32位字符的随机串
	 * 
	 * @return 32位字符的随机串
	 */
	public static String getUUID() {
		return UUID.randomUUID().toString().replace("-", "").toUpperCase();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy