本文介绍了有没有办法根据JDK或某个库中的种子字符串生成相同的UUID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否有办法根据字符串生成相同的UUID。
我尝试使用JDK的uuid类,看起来它没有提供此功能。
I am wondering if there is a way to generate the same UUID based on the string. I tried with uuid class from JDK, it looks like it does not provide this feature.
推荐答案
你可以使用UUID这种方式总是为您的输入获取相同的UUID字符串:
You can use UUID this way to get always the same UUID for your input String:
String aString="JUST_A_TEST_STRING";
String result = UUID.nameUUIDFromBytes(aString.getBytes()).toString();
这篇关于有没有办法根据JDK或某个库中的种子字符串生成相同的UUID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!