溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在java中對UUID進(jìn)行獲取

發(fā)布時間:2021-02-03 10:44:43 來源:億速云 閱讀:927 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎么在java中對UUID進(jìn)行獲取,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

UUID:

UUID,是Universally Unique Identifier的縮寫,UUID出現(xiàn)的目的,是為了讓分布式系統(tǒng)可以不借助中心節(jié)點,就可以生成UUID來標(biāo)識一些唯一的信息。

代碼:

import java.util.UUID;
 
public class UUIDTest {
 
	public static void main(String[] args) {
		String uuid1 = "e65deb4c-a110-49c8-a4ef-6e69447968d6";
		String uuid2 = "ca4a8a92-d4ed-4fc4-8a4f-345c587fbdcb";
		String uuid3 = "e1f15f1d-6edb-4f70-8a05465se273eaf95a";
		System.out.println("check > " + uuid1 + " > " + isValidUUID(uuid1));
		System.out.println("check > " + uuid2 + " > " + isValidUUID(uuid2));
		System.out.println("check > " + uuid3 + " > " + isValidUUID(uuid3));
		System.out.println("build a uuid> " + getRandomUUID(null));
		System.out.println("build a uuid> " + getRandomUUID(null));
		System.out.println("build a uuid> " + getRandomUUID("kangyucheng"));
		System.out.println("build a uuid> " + getRandomUUID("kangyucheng"));
 
	}
 
	public static boolean isValidUUID(String uuid) {
		// UUID校驗
		if (uuid == null) {
			System.out.println("uuid is null");
		}
		String regex = "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$";
		if (uuid.matches(regex)) {
			return true;
		}
		return false;
	}
 
	public static UUID getRandomUUID(String str) {
		// 產(chǎn)生UUID
		if (str == null) {
			return UUID.randomUUID();
		} else {
			return UUID.nameUUIDFromBytes(str.getBytes());
		}
	}
}

測試結(jié)果:

check > e65deb4c-a110-49c8-a4ef-6e69447968d6 > true
check > ca4a8a92-d4ed-4fc4-8a4f-345c587fbdcb > true
check > e1f15f1d-6edb-4f70-8a05465se273eaf95a > false
build a uuid>93ce6775-bc89-4849-8ae9-fb305c909700
build a uuid>7a61f2e0-903b-4904-b2bd-a075b19adb8c
build a uuid>8b68aa00-6a79-3cbb-996f-780f464f3aae
build a uuid>8b68aa00-6a79-3cbb-996f-780f464f3aae

上述就是小編為大家分享的怎么在java中對UUID進(jìn)行獲取了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI