Reading Characters from a Word ? Java

bufferedreader, character, java

Solution

String input = "apple";
char[] arr = input.toCharArray();
System.out.println(Arrays.toString(arr));

Output:

[a, p, p, l, e]

Problem

I am trying to get the characters or the letters from a word. For example: ``` input = "apple" output = "a", "p", "p", "l", "e" ``` However, I am using the `BufferedReader` class. Is there any way to read characters using `BufferedReader`? Thank you

Original source