• This project
    • Loading...
  • Sign in

crp / crp-operation

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • crp-operation
  • ..
  • util
  • UUIDUtil.java
  • 垫片上传、切垫片、垫片列表 · 0dd36644
    0dd36644 Browse Files
    wanghongbo authored 2025-07-24 18:05:37 +0800
UUIDUtil.java 285 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.wondertek.util;

import java.util.UUID;

public class UUIDUtil {
	
	public static String randomUUID() {
		String uuid = UUID.randomUUID().toString().replaceAll("-", "");
		return uuid;
	}
	
	public static void main(String[] args) {
		System.out.println(randomUUID());
	}
}