使用函数方式生成UUID
Posted 小猴子先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用函数方式生成UUID相关的知识,希望对你有一定的参考价值。
1、默认生成的UUID是有 “-” 分隔符的
例如:
public static void main(String[] args){ String uuid = UUID.randomUUID().toString(); System.out.println(uuid); } //打印结果:c91e4624-96fb-4fc4-bcc1-8a597a3f53b8
2、使用replace()方法替换 “-” 符号
public static void main(String[] args){ String uuid = UUID.randomUUID().toString().replace("-", ""); System.out.println(uuid); } //打印结果:c91e462496fb4fc4bcc18a597a3f53b8
以上是关于使用函数方式生成UUID的主要内容,如果未能解决你的问题,请参考以下文章