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

com.penglecode.common.util.UUIDUtils Maven / Gradle / Ivy

Go to download

commons is a little java tool to make your development easier in your work.

The newest version!
package com.penglecode.common.util;

import java.util.UUID;

public class UUIDUtils {

	public static String uuid(){
		String uuid =  UUID.randomUUID().toString();
		return uuid.replace("-", "");
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy