Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Generate UUID in Java

What are some of the best ways to create a GUID in Java?

share|improve this question
7  
I like how this question was phrased. Straight forward and to the point. – finneycanhelp Apr 24 '12 at 11:40
5  
@finneycanhelp - Yeah, I think we need more simple stuff like this on Stackoverflow as well. I know I benefit from them significantly. The problem is people get "flamed" a lot for posting simple questions that are search engine friendly by people who already know the answer and think the question is too simple. I do what you just did, when I see a simple question that people don't like, I comment in support of the question. In this case, its cool that the question was closed though because people searching for "GUID Java" will find it and then be able to see the answers to both questions. – Chris Dutrow Apr 24 '12 at 21:37
The question at stackoverflow.com/questions/325443/generate-uuid-in-java is more about GUID collisions, then just how what the equivalent of a GUID is in the Java tech stack, which is what (I think) is more the focus of this question. – Jon Adams Oct 18 '12 at 15:48
The cited duplicate is a completely different. This question is primarily about Java. Question 325443 is primarily about properties of UUIDs; it is question 325443 that has the wrong title! – dkantowitz Dec 12 '12 at 18:16
SO won't let me post a question that short. – Paul Draper Mar 9 at 7:07

marked as duplicate by Pascal Thivent, msw, Jarrod Roberson, Matthew Flaschen, Greg Hewgill Jun 7 '10 at 23:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 48 down vote accepted

Have a look at the UUID class. For example:

share|improve this answer

java.util.UUID.randomUUID();

share|improve this answer
awesome... thank you for this – Chanakya Nov 4 '11 at 14:23

It depends what kind of UUID you want.

  • The standard Java UUID class generates type 4 (random) UUIDs. It can also handle other variants, though it cannot generate them. (In this case, "handle" means construct UUID instances from long, byte[] or String representations, and support the relevant accessors.)

  • The Java UUID Generator (JUG) implementation purports to support "all 3 'official' types of UUID as defined by RFC-4122" ... though the RFC actually defines 4 types and mentions a 5th type.

For more information on UUID types and variants, there is a good summary in Wikipedia, and the gory details are in the RFCs and other specifications.

share|improve this answer
1  
Not completely true, it can also generate name-based (version 3) UUIDs with UUID.nameUUIDFromBytes(byte[] name) – Dennis Krøger Jan 21 at 11:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.