Java生成UUID(Universally Unique Identifier)

  UUID(Universally Unique Identifier)全局唯一标识符,是指在一台机器上生成的数字,它保证对在同一时空中的所有机器都是唯一的。按照开放软件基金会(OSF)制定的标准计算,用到了以太网卡地址、纳秒级时间、芯片ID码和许多可能的数字。由以下几部分的组合:当前日期和时间(UUID的第一个部分与时间有关,如果你在生成一个UUID之后,过几秒又生成一个UUID,则第一个部分不同,其余相同),时钟序列,全局唯一的IEEE机器识别号(如果有网卡,从网卡获得,没有网卡以其他方式获得),UUID的唯一缺陷在于生成的结果串会比较长。

在Java中生成UUID主要有以下几种方式:

1. JDK1.5
如果使用的JDK1.5的话,那么生成UUID变成了一件简单的事,以为JDK实现了UUID:
java.util.UUID,直接调用即可.
None.gifUUID uuid = UUID.randomUUID();

2. 第三方开源类库(推荐使用):
最著名的是
JUG .特点上是: 纯Java实现,开源,LGPL协议。采用了Native的方式产生真正的Uuid.而且提供了不同平台的实现,包括:
  • Linux / x86
  • Windows (98, ME, NT, 2K, XP?) / x86
  • Solaris / Sparc
  • Mac OS X
  • FreeBSD / x86
None.gifimport  org.doomdark.uuid.UUID;
None.gif
import
 org.doomdark.uuid.UUIDGenerator;
None.gif
None.gifUUIDGenerator generator 
=
 UUIDGenerator.getInstance();
None.gifUUID uuid 
= generator.generateRandomBasedUUID();

3. Java代码实现:
如果你使用JDK1.4或以前版本,又不想加入第三方的类库的话,下面提供了一个纯Java的UUID实现. 不过需要注意的是:这里产生的可能不是真正的UUID,只不过重复的机会少一些而已
None.gifimport  java.net.InetAddress;
None.gif
import
 java.net.UnknownHostException;
None.gif
ExpandedBlockStart.gifContractedBlock.gif
/** */
/**
InBlock.gif * UUID(Univeral Unique Identity)类
InBlock.gif * 


InBlock.gif * Title: 生成唯一编码
InBlock.gif * 


InBlock.gif * 


InBlock.gif * Description: 源自于w3c.org <</font>

http://源自于w3c.org >
InBlock.gif * 
InBlock.gif * 


InBlock.gif * Copyright: Copyright (c) 2001-2004
InBlock.gif * 


InBlock.gif * 
InBlock.gif *  @version  1.0
ExpandedBlockEnd.gif 
*/

ExpandedBlockStart.gifContractedBlock.gif
public final class UUID dot.gif{
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** */
/**
InBlock.gif     * 
@serial Integer that helps create a unique UID.
ExpandedSubBlockEnd.gif     
*/

InBlock.gif    
private int unique;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** */
/**
InBlock.gif     * 
@serial Long used to record the time. The time will be
InBlock.gif     *         used to create a unique UID.
ExpandedSubBlockEnd.gif     
*/

InBlock.gif    
private long time;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** */
/**
InBlock.gif     * InetAddress to make the UID globally unique
ExpandedSubBlockEnd.gif     
*/

InBlock.gif    
private static String address;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** */
/**
InBlock.gif     * a random number
ExpandedSubBlockEnd.gif     
*/

InBlock.gif    
private static int hostUnique;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** */
/**
InBlock.gif     * Used for synchronization
ExpandedSubBlockEnd.gif     
*/

InBlock.gif    
private static Object mutex;
InBlock.gif
InBlock.gif    
private static long
 lastTime;
InBlock.gif
InBlock.gif    
private static long
 DELAY;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
private static String generateNoNetworkID() dot.gif
{
InBlock.gif        Thread current 
=
 Thread.currentThread();
InBlock.gif        String nid 
= current.activeCount() + System.getProperty("os.version"
)
InBlock.gif                
+ System.getProperty("user.name "
)
InBlock.gif                
+ System.getProperty("java.version"
);
InBlock.gif        System.out.println(
"netWorkId =" +
 nid);
InBlock.gif        MD5 md5 
= new
 MD5(nid);
InBlock.gif        md5.processString();
InBlock.gif        
return
 md5.getStringDigest();
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
static dot.gif{
InBlock.gif        hostUnique 
= (new
 Object()).hashCode();
InBlock.gif        mutex 
= new
 Object();
InBlock.gif        lastTime 
=
 System.currentTimeMillis();
InBlock.gif        DELAY 
= 10// in milliseconds

ExpandedSubBlockStart.gifContractedSubBlock.gif
        try dot.gif{
InBlock.gif            String s 
=
 InetAddress.getLocalHost().getHostAddress();
InBlock.gif            MD5 md5 
= new
 MD5(s);
InBlock.gif            md5.processString();
InBlock.gif            address 
=
 md5.getStringDigest();
ExpandedSubBlockStart.gifContractedSubBlock.gif        }
 catch (UnknownHostException ex) dot.gif{
InBlock.gif            address 
=
 generateNoNetworkID();
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
public UUID() dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
synchronized (mutex) dot.gif
{
InBlock.gif            
boolean done = false
;
ExpandedSubBlockStart.gifContractedSubBlock.gif            
while (!done) dot.gif
{
InBlock.gif                time 
=
 System.currentTimeMillis();
ExpandedSubBlockStart.gifContractedSubBlock.gif                
if (time  lastTime + DELAY) dot.gif
{
InBlock.gif                    
// pause for a second to wait for time to change

ExpandedSubBlockStart.gifContractedSubBlock.gif
                    try dot.gif{
InBlock.gif                        Thread.currentThread().sleep(DELAY);
ExpandedSubBlockStart.gifContractedSubBlock.gif                    }
 catch (java.lang.InterruptedException e) dot.gif
{
ExpandedSubBlockEnd.gif                    }
 // ignore exception

InBlock.gif
                    continue;
ExpandedSubBlockStart.gifContractedSubBlock.gif                }
 else dot.gif{
InBlock.gif                    lastTime 
=
 time;
InBlock.gif                    done 
= true
;
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

InBlock.gif            unique 
= hostUnique;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
public String toString() dot.gif{
InBlock.gif        
return Integer.toString(unique, 16+ Long.toString(time, 16+
 address;
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
public boolean equals(Object obj) dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if ((obj != null&& (obj instanceof UUID)) dot.gif
{
InBlock.gif            UUID uuid 
=
 (UUID) obj;
InBlock.gif            
return (unique == uuid.unique && time == uuid.time &&
 address
InBlock.gif                    .equals(uuid.address));
ExpandedSubBlockStart.gifContractedSubBlock.gif        }
 else dot.gif{
InBlock.gif            
return false
;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
public static void main(String args[]) dot.gif{
InBlock.gif        System.out.println(
new
 UUID());
InBlock.gif        System.out.println(
new
 UUID());
InBlock.gif        System.out.println(
new
 UUID());
InBlock.gif        
long start =
 System.currentTimeMillis();
InBlock.gif        System.out.println(
new
 UUID());
InBlock.gif        
long end =
 System.currentTimeMillis();
InBlock.gif        System.out.println((end 
-
 start));
InBlock.gif        System.out.println(
new
 UUID().toString().length());
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/** *//**
InBlock.gif     * 返回最新的UUID号码
InBlock.gif     * 
InBlock.gif     * 
@return String UUID,长50位
InBlock.gif     * 
ExpandedSubBlockEnd.gif     
*/

ExpandedSubBlockStart.gifContractedSubBlock.gif    
public final static String getUUID() dot.gif{
InBlock.gif        UUID uid 
= new
 UUID();
InBlock.gif        
return
 uid.toString();
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

其中使用到MD5加密算法,实现代码如下:
ContractedBlock.gifExpandedBlockStart.gif
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值