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

com.litongjava.table.utils.UUIDUtils Maven / Gradle / Ivy

There is a newer version: 1.4.8
Show newest version
package com.litongjava.table.utils;

import java.util.UUID;

/**
 * 
 * @author bill robot
 * @date 2020年8月29日 下午6:41:14
 * @desc
 */
public class UUIDUtils {
  /**
   * 生成随机的32位uuid
   * @return
   */
  public static final String random() {
    return UUID.randomUUID().toString().replace("-", "");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy