I've been looking for a simple java algorithm to generate a pseudo-random alpha-numeric string. In my situation it would be used as a unique session/key identifier that would "likely" be unique over 500K+ generation (my needs don't really require anything much more sophisticated) . Ideally I would be able to specify a length depending on my uniqueness needs. For example, a generated string of length 12 might look something like "AEYGF7K0DM1X".

Answers: I like @Apocalisp and @erickson's answers equally well. The only downside to @Apocalisp's answer is it requires an apache class. Thanks to both for the help!

link|improve this question
11  
Beware the birthday paradox. – pablosaraiva Oct 25 '10 at 15:07
2  
@pablosaraiva what is that – ant Oct 26 '10 at 14:28
2  
@c0mrade en.wikipedia.org/wiki/Birthday_problem – pablosaraiva Oct 26 '10 at 15:05
feedback

15 Answers

up vote 113 down vote accepted

Here is code for secure, easy, but a little bit more expensive session identifiers.

import java.security.SecureRandom;
import java.math.BigInteger;

public final class SessionIdentifierGenerator
{

  private SecureRandom random = new SecureRandom();

  public String nextSessionId()
  {
    return new BigInteger(130, random).toString(32);
  }

}

If you allow session identifiers to be easily guessable (too short, flawed random number generator, etc.), attackers can hijack other's sessions. Note that SecureRandom objects are expensive to initialize, so you'll want to keep one around and reuse it.

Here is alternative code for cheap, insecure random alpha-numeric strings. You can tweak the "symbols" if you want to use more characters.

import java.util.Random;

public class RandomString
{

  private static final char[] symbols = new char[36];

  static {
    for (int idx = 0; idx < 10; ++idx)
      symbols[idx] = (char) ('0' + idx);
    for (int idx = 10; idx < 36; ++idx)
      symbols[idx] = (char) ('a' + idx - 10);
  }

  private final Random random = new Random();

  private final char[] buf;

  public RandomString(int length)
  {
    if (length < 1)
      throw new IllegalArgumentException("length < 1: " + length);
    buf = new char[length];
  }

  public String nextString()
  {
    for (int idx = 0; idx < buf.length; ++idx) 
      buf[idx] = symbols[random.nextInt(symbols.length)];
    return new String(buf);
  }

}
link|improve this answer
your expensive way does not work for me! i get cannot find symbol for method BigInteger(int,java.security.SecureRandom) – ufk Feb 3 '10 at 20:22
4  
@ufk - It sounds like you left out the new operator, since the compiler complains it can't find a "method," rather than a constructor. – erickson Feb 3 '10 at 21:29
1  
If you need spaces in yours, you can tack on .replaceAll("\\d", " "); onto the end of the return new BigInteger(130, random).toString(32); line to do a regex swap. It replaces all digits with spaces. Works great for me: I'm using this as a substitute for a front-end Lorem Ipsum – weisjohn Oct 7 '11 at 15:00
2  
@weisjohn That's a good idea. You can do something similar with the second method, by removing the digits from symbols and using a space instead; you can control the average "word" length by changing the number of spaces in symbols (more occurrences for shorter words). For a really over-the-top fake text solution, you can use a Markov chain! – erickson Oct 7 '11 at 16:02
2  
@ejain because 32 = 2^5; each character will represent exactly 5 bits, and 130 bits can be evenly divided into characters. – erickson Feb 21 at 21:38
show 5 more comments
feedback

Java supplies a way of doing this directly. If you don't want the dashes, they are easy to strip out.

import java.util.UUID;
String uuid = UUID.randomUUID().toString();
System.out.println("uuid = " + uuid);

Output:

uuid = 2d7428a6-b58c-4008-8575-f05549f16316

link|improve this answer
3  
Beware that this solution only generates a random string with hexadecimal characters. Which can be fine in some cases. – Dave May 5 '11 at 9:28
The UUID class is useful. However, they aren't as compact as the identifiers produced by my answers. This can be an issue, for example, in URLs. Depends on your needs. – erickson Aug 24 '11 at 16:37
If you're worried about the hexadecimal characters just run in through a cryptographic hash algorithm. – Ruggs Sep 6 '11 at 0:13
@Ruggs - The goal is alpha-numeric strings. How does broadening the output to any possible bytes fit with that? – erickson Oct 7 '11 at 16:18
feedback

If you're happy to use Apache classes, why not just use org.apache.commons.lang.RandomStringUtils (commons-lang)

http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/RandomStringUtils.html

link|improve this answer
33  
It seems to me that apache commons libs can solve a good 20% of the java questions asked on stackoverflow.... – skaffman Oct 1 '08 at 9:00
2  
Correction to the dead link above: commons.apache.org/lang/api-2.5/org/apache/commons/lang/… – Gary Rowe Aug 20 '10 at 12:31
@skaffman That's why the features haven't been introduced into the JDK, otherwise Java development would be too easy. – TK Kocheran Oct 19 '11 at 3:31
feedback

in one line-

Long.toHexString(Double.doubleToLongBits(Math.random()));

http://mynotes.wordpress.com/2009/07/23/java-generating-random-string/

link|improve this answer
1  
But only 6 letters :( – Zippoxer Jan 11 '11 at 9:45
Thats exactly i was looking for...Thanks – AutoMEta Mar 9 '11 at 6:42
It helped me too but only hexadecimal digits :( – noquery Sep 5 '11 at 5:31
feedback
static final String AB = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
static Random rnd = new Random();

String randomString( int len ) 
{
   StringBuilder sb = new StringBuilder( len );
   for( int i = 0; i < len; i++ ) 
      sb.append( AB.charAt( rnd.nextInt(AB.length()) ) );
   return sb.toString();
}
link|improve this answer
1  
It should read: sb.append( alpha.substring( random.nextInt(alpha.length()) ) ) – Abdul Nov 11 '09 at 16:39
+1, the simplest solution here for generating a random string of specified length (apart from using RandomStringUtils from Commons Lang). – Jonik Apr 20 at 15:49
feedback

Here it is in Java:

import static java.lang.Math.round;
import static java.lang.Math.random;
import static java.lang.Math.pow;
import static java.lang.Math.abs;
import static java.lang.Math.min;
import static org.apache.commons.lang.StringUtils.leftPad

public class RandomAlphaNum {
  public static String gen(int length) {
    StringBuffer sb = new StringBuffer();
    for (int i = length; i > 0; i -= 12) {
      int n = min(12, abs(i));
      sb.append(leftPad(Long.toString(round(random() * pow(36, n)), 36), n, '0'));
    }
    return sb.toString();
  }
}

Here's a sample run:

scala> RandomAlphaNum.gen(42)
res3: java.lang.String = uja6snx21bswf9t89s00bxssu8g6qlu16ffzqaxxoy
link|improve this answer
feedback

using Dollar should be simple as:

// "0123456789" + "ABCDE...Z"
String validCharacters = $('0', '9').join() + $('A', 'Z').join();

String randomString(int length) {
    return $(validCharacters).shuffle().slice(length).toString();
}

@Test
public void buildFiveRandomStrings() {
    for (int i : $(5)) {
        System.out.println(randomString(12));
    }
}

it outputs something like that:

DKL1SBH9UJWC
JH7P0IT21EA5
5DTI72EO6SFU
HQUMJTEBNF7Y
1HCR6SKYWGT7
link|improve this answer
1  
I realise this is a little late to make a comment but should your randomString method actually use the length parameter in some way rather than hardcoding 12? – chillysapien Aug 4 '11 at 9:44
feedback

A short and easy solution, but uses only lowercase and numerics:

 Random r = /* ... */;
 Long.toString(r.nextLong(), 36);

The size is about 12 digits to base 36 and can't be improved further, that way. Of course you can append multiple instances.

link|improve this answer
feedback

I found this solution that generates a random hex encoded string. The provided unit test seems to hold up to my primary use case. Although, it is slightly more complex than some of the other answers provided.

/**
 * Generate a random hex encoded string token of the specified length
 *  
 * @param length
 * @return random hex string
 */
public static synchronized String generateUniqueToken(Integer length) 
{

    byte random[] = new byte[length];
    Random randomGenerator = new Random();
    StringBuffer buffer = new StringBuffer();

    randomGenerator.nextBytes(random);

    for (int j = 0; j < random.length; j++)
    {
        byte b1 = (byte) ((random[j] & 0xf0) >> 4);
        byte b2 = (byte) (random[j] & 0x0f);
        if (b1 < 10)
            buffer.append((char) ('0' + b1));
        else
            buffer.append((char) ('A' + (b1 - 10)));
        if (b2 < 10)
            buffer.append((char) ('0' + b2));
        else
            buffer.append((char) ('A' + (b2 - 10)));
    }

    return (buffer.toString());
}

@Test
public void testGenerateUniqueToken()
{
    Set set = new HashSet();
    String token = null;
    int size = 16;

    /* Seems like we should be able to generate 500K tokens 
     * without a duplicate 
    */
    for (int i=0; i<500000; i++)
    {
        token = Utility.generateUniqueToken(size);

        if (token.length() != size * 2)
        {
            fail("Incorrect length");
        }
        else
        if (set.contains(token)) 
        {
            fail("Duplicate token generated");
        }
        else
        {
            set.add(token);
        }
    }

}
link|improve this answer
feedback

You mention "simple", but just in case anyone else is looking for something that meets more stringent security requirements, you might want to take a look at jpwgen. jpwgen is modeled after pwgen in Unix, and is very configurable.

link|improve this answer
feedback
import java.util.Date;
import java.util.Random;

public class RandomGenerator {

  private static Random random = new Random((new Date()).getTime());

    public static String generateRandomString(int length) {
      char[] values = {'a','b','c','d','e','f','g','h','i','j',
               'k','l','m','n','o','p','q','r','s','t',
               'u','v','w','x','y','z','0','1','2','3',
               '4','5','6','7','8','9'};

      String out = "";

      for (int i=0;i<length;i++) {
          int idx=random.nextInt(values.length);
        out += values[idx];
      }

      return out;
    }
}
link|improve this answer
feedback

Best Random String Generator Method

public class RandomStringGenerator{

    private static int randomStringLength = 25 ;
    private static boolean allowSpecialCharacters = true ;
    private static String specialCharacters = "!@$%*-_+:";
    private static boolean allowDuplicates = false ;

    private static boolean isAlphanum = false;
    private static boolean isNumeric = false;
    private static boolean isAlpha = false;
    private static final String alphabet = "abcdefghijklmnopqrstuvwxyz";
    private static boolean mixCase = false;
    private static final String capAlpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    private static final String num = "0123456789";

    public static String getRandomString() {
        String returnVal = "";
        int specialCharactersCount = 0;
        int maxspecialCharacters = randomStringLength/4;

        try {
            StringBuffer values = buildList();
            for (int inx = 0; inx < randomStringLength; inx++) {
                int selChar = (int) (Math.random() * (values.length() - 1));
                if (allowSpecialCharacters)
                {
                    if (specialCharacters.indexOf("" + values.charAt(selChar)) > -1)
                    {
                        specialCharactersCount ++;
                        if (specialCharactersCount > maxspecialCharacters)
                        {
                            while (specialCharacters.indexOf("" + values.charAt(selChar)) != -1)
                            {
                                selChar = (int) (Math.random() * (values.length() - 1));
                            }
                        }
                    }
                }
                returnVal += values.charAt(selChar);
                if (!allowDuplicates) {
                    values.deleteCharAt(selChar);
                }
            }
        } catch (Exception e) {
            returnVal = "Error While Processing Values";
        }
        return returnVal;
    }

    private static StringBuffer buildList() {
        StringBuffer list = new StringBuffer(0);
        if (isNumeric || isAlphanum) {
            list.append(num);
        }
        if (isAlpha || isAlphanum) {
            list.append(alphabet);
            if (mixCase) {
                list.append(capAlpha);
            }
        }
        if (allowSpecialCharacters)
        {
            list.append(specialCharacters);
        }
        int currLen = list.length();
        String returnVal = "";
        for (int inx = 0; inx < currLen; inx++) {
            int selChar = (int) (Math.random() * (list.length() - 1));
            returnVal += list.charAt(selChar);
            list.deleteCharAt(selChar);
        }
        list = new StringBuffer(returnVal);
        return list;
    }   

}
link|improve this answer
feedback

Hi this is Amar (mailz4amar@yahoo.com) from Hyderabad. I have developed an application to develop an auto generated alphanumberic string for my project. In this string the first three chars are alphabets and the next seven are integers.

the code is

public class AlphaNumericGenerator {

public static void main(String[] args) {
    java.util.Random r = new java.util.Random();
    int i = 1, n = 0;
    char c;
    String str="";
    for (int t = 0; t < 3; t++) {
        while (true) {
            i = r.nextInt(10);
            if (i > 5 && i < 10) {

                if (i == 9) {
                    i = 90;
                    n = 90;
                    break;
                }
                if (i != 90) {
                    n = i * 10 + r.nextInt(10);
                    while (n < 65) {
                        n = i * 10 + r.nextInt(10);
                    }
                }

                break;
            }
        }
        c=(char)n;

        str= String.valueOf(c)+str;
    }
    while(true){
    i = r.nextInt(10000000);
    if(i>999999)
        break;
    }
    str=str+i;
    System.out.println(str);

}

}

link|improve this answer
feedback
import java.util.*;
import javax.swing.*;
public class alphanumeric
{
    public static void main(String args[])
    {
        String nval,lenval;
        int n,len;

        nval=JOptionPane.showInputDialog("Enter number of codes you require : ");
        n=Integer.parseInt(nval);

        lenval=JOptionPane.showInputDialog("Enter code length you require : ");
        len=Integer.parseInt(lenval);

        find(n,len);

    }
    public static void find(int n,int length)
    {
        String str1="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        StringBuilder sb=new StringBuilder(length);
        Random r = new Random();

        System.out.println("\n\t Unique codes are \n\n");
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<length;j++)
            {
                sb.append(str1.charAt(r.nextInt(str1.length())));
            }
            System.out.println("  "+sb.toString());
            sb.delete(0,length);
        }
    }
}
link|improve this answer
feedback
import java.util.Random;

public class passGen{
    //Verison 1.0
    private static final String dCase = "abcdefghijklmnopqrstuvwxyz";
    private static final String uCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    private static final String sChar = "!@#$%^&*";
    private static final String intChar = "0123456789";
    private static Random r = new Random();
    private static String pass = "";

    public static void main (String[] args) {
        System.out.println ("Generating pass...");
        while (pass.length () != 16){
            int rPick = r.nextInt(4);
            if (rPick == 0){
                int spot = r.nextInt(25);
                pass += dCase.charAt(spot);
            } else if (rPick == 1) {
                int spot = r.nextInt (25);
                pass += uCase.charAt(spot);
            } else if (rPick == 2) {
                int spot = r.nextInt (7);
                pass += sChar.charAt(spot);
            } else if (rPick == 3){
                int spot = r.nextInt (9);
                pass += intChar.charAt (spot);
            }
        }
        System.out.println ("Generated Pass: " + pass);
    }
}

So what this does is just add's the password into the string and ... yeah works good check it out... very simple. I wrote it

link|improve this answer
I allowed myself to make some minor modifications. Why do you add + 0 that often? Why do you split declaration of spot and initialisxation? What is the advantage of indexes 1,2,3,4 instead of 0,1,2,3? Most importantly: you took a random value, and compared with if-else 4 times a new value, which could always mismatch, without gaining more randomness. But feel free to rollback. – user unknown Apr 17 at 9:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.