I need to generate 10,000 unique identifiers in Java. The identifiers should be a mixture of numbers and letters and less than 10 characters each. Any ideas? Built in librar
Why not use java.util.UUID? It is guaranteed to generate unique identifiers, and it is as standard as it gets :-).