Does Java have any functionality to generate random characters or strings? Or must one simply pick a random integer and convert that integer\'s ascii code to a character?>
Take a look at Java Randomizer class. I think you can randomize a character using the randomize(char[] array) method.