tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Articles > Misc > How to generate a Random Alpha numeric string

How to generate a Random Alpha numeric string

Author: Venkata Sudhakar

The below example shows how to generate a Random Alpha numeric string in Java. If you are using Apache commons library this is pretty straight forward.

1RandomStringUtils.randomAlphanumeric(8)

Another simple approach is using UUID

1UUID.randomUUID().toString().replaceAll("-", "")

Here is another alternaive without any dependency on external libararies.

01private static final String ALLOWED_CHARS =
02        "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!@#$%^&*()";
03private static SecureRandom random = new SecureRandom();
04 
05public static String geRandomString(int length){
06    StringBuilder sb = new StringBuilder(length);
07    for(int i = 0; i < length; i++) {
08      sb.append(ALLOWED_CHARS.charAt(random.nextInt(ALLOWED_CHARS.length())));
09    }
10    return sb.toString();
11}

 
  


  
bl  br