You can use Guava's CharMatcher to extract lower case letters from your string, then use Joiner to put each character on a new line.
You can do all this in a single line of code as shown below:
System.out.println(Joiner.on('\n').join(Lists.charactersOf(CharMatcher.JAVA_LOWER_CASE.retainFrom(s))));