how to convert a stirng in an array code example
Example: how to convert string into string array
public static void main(String[] args) {
String str = "abcdef";
String [] array = str.split(""); // {"a", "b", "c", "d", "e", "f" }.
}