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.
String.
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();
2.1m questions
2.1m answers
60 comments
57.0k users