Ich verstehe nicht warum hier ein Fehler angezeigt wird. Ich habe nun 100.00 mal drüber geschaut aber ich versteh es nicht...
Hier der Fehlercode:Code:String str = txaEingabe1.getText(); String strArray[] = str.split("\n"); for (int i= 0; i<=1391; i++) { char[] charWort = strArray[i].toCharArray(); for (int j = 0; j <= 17; j++) { if (charWort[j] == 214 || charWort[j] == 246 || charWort[j] == 220 || charWort[j] == 252) { txaAusgabe.append(strArray[i]+ "\n"); } } } }
Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 1
at Filter.GUI.btnStartActionPerformed(GUI.java:106)
at Filter.GUI.access$000(GUI.java:13)
at Filter.GUI$1.actionPerformed(GUI.java:43)