在java中生成唯一ID的最佳方法

时间:2010-03-10 10:49:58

标签: java uniqueidentifier

在java中生成唯一ID的最佳方法是什么。人们通常使用

String id = System.currentTimeMillis+ someStaticCounter;

但是这种方法需要在多线程应用程序中进行同步。

我正在使用

try 
{
   Thread.sleep(1); 
  //This sleep ensures that two consecutive calls from the same thread does not return the same id.
}
catch (InterruptedException e)
{
 // do nothing;
}
id = System.currentTimeMillis() + "-" + Thread.currentThread().getId();

这种方法可以帮助我避免同步开销..

有什么更好的方法请建议吗?

2 个答案:

答案 0 :(得分:8)

答案 1 :(得分:1)

UUID.randomUUID()