
com.penglecode.common.util.UUIDUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
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