public static void main(String[] args) { String str = "abcdef"; String [] array = str.split(""); // {"a", "b", "c", "d", "e", "f" }. }