We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aab32cd commit 464fcbbCopy full SHA for 464fcbb
1 file changed
uuid/UuidUtil.java
@@ -0,0 +1,9 @@
1
+import java.util.UUID;
2
+
3
+public class UuidUtil {
4
5
+ public static String get32UUID() {
6
+ String uuid = UUID.randomUUID().toString().trim().replaceAll("-", "");
7
+ return uuid;
8
+ }
9
+}
0 commit comments