Search code examples
javauniqueidentifier

How do I create a unique ID in Java?


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.


Solution

  • Create a UUID.

    String uniqueID = UUID.randomUUID().toString();