String wort="Hallo"; char[] array = new char[wort.length()]; int i = 0; while(i<wort.length()) { array[i] = wort.charAt(i); i++; }