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

I was wondering what the easiest way to convert a UUID to a unique integer would be? I have tried using the hash code but people tell me that it is not going to always be unique if i use the hash code?

So what is the easiest way? Is the hash code unique?

share|improve this question
No, it's not - by definition. Also, if it were unique, why then would anybody need UUIDs? – Ingo Apr 6 '11 at 8:35
Define unique. Globally, or just within your application, or a bit of code? – Bart van Heukelom Apr 6 '11 at 8:36
Its just that by some silly specification I needed an application unique integer, I wanted to make use of the UUID class, but it turns out I cannot down scale it. – Alex Hope O'Connor Apr 6 '11 at 8:58
It would be easier if you asked the real question: how can I have an application unique integer ? could I convert a UUID to it ? Then we could answer your problem and not just tell you you can't use UUID for that purpose... – pgras Apr 6 '11 at 9:04

5 Answers

up vote 7 down vote accepted

You are going to have a problem since the UUID is 128 bits and the int is only 32bit. You'll either have to accept the risk of collisions and try to fudge it to a smaller space (hashCode is probably a good way to do that) or find an alternative (use the UUID directly, map to a BigInteger - difficult to tell without knowing why)

share|improve this answer

Answering the How can I have a unique application wide Integer:

If it needs to be unique even after restarts or if you application is clustered you may use a Database sequence.

If it just needs to be unique during the runtime use a static AtomicInteger.

EDIT (example added):

public class Sequence {

  private static final AtomicInteger counter = new AtomicInteger();

  public static int nextValue() {
    return counter.getAndIncrement();
  }
}

Usage:

int nextValue = Counter.nextValue();

This is thread safe (different threads will always receive distinct values, and no values will be "lost")

share|improve this answer
Can you give me an example of how to use AtomicInteger? – Alex Hope O'Connor Apr 6 '11 at 11:29

No, the hash code is (and cannot be) unique. The thing with a GUID/UUID is that you need all 128 bits to guarantee uniqueness, therefore scaling it down in any way will give problems, see e.g. GUIDs are globally unique, but substrings of GUIDs aren't.

Honestly, I think you're better off with just using sequential integers and skip the GUID thing altogether. If you need GUIDs fo any reason, then use them and don't try generating an integer from them.

share|improve this answer

If you mean by int the one that takes 4 bytes then you can't do it as explained in other answers, reason is pigeon hole principle. But if you just want it to behave like integer number you can pass it to BigInteger constructor and use it as number.

share|improve this answer
I guess if they can use BigInteger they can also use a GUID. – Јοеу Apr 6 '11 at 8:46
@Joey I guess so. – Andrey Apr 6 '11 at 9:05

A UUID is a 16-Byte number (128 bit). You can't crunch it into an int (32 bit) while preserving it's uniqueness.

Mathematically spoken: 296 UUIDs will share the same Java-int-size hash value (which is ... a lot ;) )

A way out - some real life UUID often have a rather static part. So in isolated scenarios, the real unique portion of UUIDs may be less then 32 bit.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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