浅谈java获取UUID与UUID的校验
程序员文章站
2024-02-26 12:32:04
背景:
我们在开发的过程中可能需要随机生成一个id,例如数据库中的某个id有时候也要对其进行校验。
uuid:
uuid,是universally unique id...
背景:
我们在开发的过程中可能需要随机生成一个id,例如数据库中的某个id有时候也要对其进行校验。
uuid:
uuid,是universally unique identifier的缩写,uuid出现的目的,是为了让分布式系统可以不借助中心节点,就可以生成uuid来标识一些唯一的信息。
代码:
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) { // 产生uuid if (str == null) { return uuid.randomuuid(); } else { return uuid.nameuuidfrombytes(str.getbytes()); } } }
测试结果:
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与uuid的校验详解整合,希望对大家有所帮助
上一篇: MySQL错误代码大全