A 32 byte GUID generator : UUID GUID « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » UUID GUIDScreenshots 
A 32 byte GUID generator
  
/*************************************************************************
 *                                                                       *
 *  EJBCA: The OpenSource Certificate Authority                          *
 *                                                                       *
 *  This software is free software; you can redistribute it and/or       *
 *  modify it under the terms of the GNU Lesser General Public           *
 *  License as published by the Free Software Foundation; either         *
 *  version 2.1 of the License, or any later version.                    *
 *                                                                       *
 *  See terms of license at gnu.org.                                     *
 *                                                                       *
 *************************************************************************/


/** Shamelessly ripped from generated XDoclet source, because I don't want to generate util classes.
 
 @author XDoclet.sf.net
 @version $Id: GUIDGenerator.java 5585 2008-05-01 20:55:00Z anatom $
 */
public class GUIDGenerator {

     /** Cached per JVM server IP. */
     private static String hexServerIP = null;

     // initialise the secure random instance
     private static final java.security.SecureRandom seeder = new java.security.SecureRandom();
     
     /**
      * A 32 byte GUID generator (Globally Unique ID). These artificial keys SHOULD <strong>NOT </strong> be seen by the user,
      * not even touched by the DBA but with very rare exceptions, just manipulated by the database and the programs.
      *
      * Usage: Add an id field (type java.lang.String) to your EJB, and add setId(XXXUtil.generateGUID(this)); to the ejbCreate method.
      */
     public static final String generateGUID(Object o) {
         StringBuffer tmpBuffer = new StringBuffer(16);
         if (hexServerIP == null) {
             java.net.InetAddress localInetAddress = null;
             try {
                 localInetAddress = java.net.InetAddress.getLocalHost();
             catch (java.net.UnknownHostException uhe) {
                 return null;
             }
             byte serverIP[] = localInetAddress.getAddress();
             hexServerIP = hexFormat(getInt(serverIP)8);
         }

         String hashcode = hexFormat(System.identityHashCode(o)8);
         tmpBuffer.append(hexServerIP);
         tmpBuffer.append(hashcode);

         long timeNow      = System.currentTimeMillis();
         int timeLow       = (int)timeNow & 0xFFFFFFFF;
         int node          = seeder.nextInt();

         StringBuffer guid = new StringBuffer(32);
         guid.append(hexFormat(timeLow, 8));
         guid.append(tmpBuffer.toString());
         guid.append(hexFormat(node, 8));
         return guid.toString();
     }
     
     private static int getInt(byte bytes[]) {
         int i = 0;
         int j = 24;
         for (int k = 0; j >= 0; k++) {
             int l = bytes[k0xff;
             i += l << j;
             j -= 8;
         }
         return i;
     }

     private static String hexFormat(int i, int j) {
         String s = Integer.toHexString(i);
         return padHex(s, j+ s;
     }

     private static String padHex(String s, int i) {
         StringBuffer tmpBuffer = new StringBuffer();
         if (s.length() < i) {
             for (int j = 0; j < i - s.length(); j++) {
                 tmpBuffer.append('0');
             }
         }
         return tmpBuffer.toString();
     }
}

   
    
  
Related examples in the same category
1. Random GUID
2. Algorithm for generating Random GUID
3. Get a unique identifier Using java.rmi.dgc.VMID
4. Using java.util.UUID
5. Create your own basic UUID
6. Session ID generator
7. UUID generator from Sun Microsystems
8. UUID generator from http://www1.ics.uci.edu
9. Using java.util.concurrent.AtomicLong: A numerical id, start at zero and increment by one.
10. A unique identifier
11. Generate pseudo-GUID sequences
12. Generates a UUID
13. Generates random UUIDs
14. Generator for Globally unique Strings
15. ID generator
16. Simple Id Generator
17. UUID generation
18. UUID generator of 32 bytes long values
19. Simple Long Id Generator
20. Long Sequence Generator
21. UUID generator
22. Thread-safe version of the Axiom UUIDGenerator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.