封装各种生成唯一性ID算法的工具类
生活随笔
收集整理的這篇文章主要介紹了
封装各种生成唯一性ID算法的工具类
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
/*** Copyright (c) 2005-2012 springside.org.cn** Licensed under the Apache License, Version 2.0 (the "License");*/
package com.minxinloan.common.utils;import java.security.SecureRandom;
import java.util.UUID;/*** 封裝各種生成唯一性ID算法的工具類.* @author calvin* @version 2013-01-15*/
public class Identities {private static SecureRandom random = new SecureRandom();/*** 封裝JDK自帶的UUID, 通過Random數(shù)字生成, 中間有-分割.*/public static String uuid() {return UUID.randomUUID().toString();}/*** 封裝JDK自帶的UUID, 通過Random數(shù)字生成, 中間無-分割.*/public static String uuid2() {return UUID.randomUUID().toString().replaceAll("-", "");}/*** 使用SecureRandom隨機(jī)生成Long. */public static long randomLong() {return Math.abs(random.nextLong());}/*** 基于Base62編碼的SecureRandom隨機(jī)生成bytes.*/public static String randomBase62(int length) {byte[] randomBytes = new byte[length];random.nextBytes(randomBytes);return Encodes.encodeBase62(randomBytes);}
}
?
轉(zhuǎn)載于:https://www.cnblogs.com/yy123/p/5354191.html
總結(jié)
以上是生活随笔為你收集整理的封装各种生成唯一性ID算法的工具类的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 潭酒市场人员如何层次分级管理?
- 下一篇: Leetcode 17. Letter