Hi,
I'm looking for the best way to create a unique ID as a String in Java.
Any guidance appreciated, thanks.
I should mention I'm using Java 5.
|
|
Hi, I'm looking for the best way to create a unique ID as a String in Java. Any guidance appreciated, thanks. I should mention I'm using Java 5.
|
||
|
|
|
|
Try creating a UUID
|
||||||||||||||
|
|
|
Here's my two cent's worth: I've previously implemented an
|
||
|
|
|
|
If you want short, human-readable IDs and only need them to be unique per JVM run:
Edit: Alternative suggested in the comments - this relies on under-the-hood "magic" for thread safety, but is more scalable and just as safe:
|
||||||||||||
|
|
|
|
||||
|