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

com.yishuifengxiao.common.tool.random.UID Maven / Gradle / Ivy

/**
 * 
 */
package com.yishuifengxiao.common.tool.random;

import java.util.UUID;

/**
 * UUID工具类
 * 
 * @author yishui
 * @version 0.0.1
 * @date 2018年7月27日
 */
public class UID {
	/**
	 * 生成UUID
	 * 
	 * @return
	 */
	public static synchronized String uuid() {
		return UUID.randomUUID().toString().replaceAll("-", "");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy