String str = "abcd..."; ArrayList<Character> chars = new ArrayList<Character>(); for (char c : str.toCharArray()) { chars.add(c); }