The toCharArray() function on Strings might be useful here.
for(char c : s.toCharArray())
System.out.println(c);
And to print only the lowercase ones in the string- Thanks @fge
for(Character c : s.toCharArray()){
if(Character.isLowerCase(c))
System.out.println(c);
}