JAVA生成UUID
2021-04-18 01:26
标签:targe ref color system and href 维基 get 32位 定义及实现: UUID是由一组32位数的16进制数字所构成,故UUID理论上的总数为1632=2128,约等于3.4 x 1038。也就是说若每纳秒(ns)产生1万亿个UUID,要花100亿年才会将所有UUID用完。 UUID的标准型式包含32个16进制数字,以连字号分为五段,形式为 8-4-4-4-12 的32个字符。示例: 550e8400-e29b-41d4-a716-446655440000 扩展: 维基百科-通用唯一识别码 JAVA生成UUID 标签:targe ref color system and href 维基 get 32位 原文地址:https://www.cnblogs.com/myc-xiaochaochao/p/13297660.htmlString uuid = UUID.randomUUID().toString().replaceAll("-", "");
System.out.println(uuid);