东方网 文促会 后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UUIDUtil.java 267B

1234567891011121314151617
  1. package com.xdf.creative.util;
  2. import java.util.UUID;
  3. /**
  4. * @author DeanYe
  5. * @date 2018-11-08
  6. */
  7. public class UUIDUtil {
  8. public static String getUUID() {
  9. String uuid = UUID.randomUUID().toString().replaceAll("-", "");
  10. return uuid;
  11. }
  12. }