Is there any way to generate the same UUID from a String

主宰稳场 提交于 2019-12-03 05:25:54

问题


I am wondering if there is a way to generate the same UUID based on a String. I tried with UUID, it looks like it does not provide this feature.


回答1:


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();


来源:https://stackoverflow.com/questions/29059530/is-there-any-way-to-generate-the-same-uuid-from-a-string

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!