UUID 生成32位随机串
Posted quan-coder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UUID 生成32位随机串相关的知识,希望对你有一定的参考价值。
java通过jdk自带的UUID,生成32位的随机串
private static String generate_UUID() { UUID uuid=UUID.randomUUID(); String str = uuid.toString(); System.out.println("str: " + str); // bb01a3cd-987f-469d-9e0f-04dffa2d3278 return str.replace("-", ""); // bb01a3cd987f469d9e0f04dffa2d3278 }
UUID生成的str是36位,去掉 "-" 后,是32位
以上是关于UUID 生成32位随机串的主要内容,如果未能解决你的问题,请参考以下文章