StringReader makes it convenient to iterate over a String character by character as follows:

StringReader reader = new StringReader("This is a string.");
int ch;
while((ch = reader.read()) != -1)
{
    System.out.println((char)ch);
}