我有一个我的小问题,当我尝试从文件中读取时,我会得到 arrayindexoutofboundsexception。我不知道更好或更详细的解释方式,所以我将代码和错误粘贴在下面。这都是我程序的主要方法。
File fila;
String[] innlesningsarray=new String[500];
try{
Scanner innFil=new Scanner(new File("/uio/hume/student-u77/makrist/Downloads/akronymer.txt"));
while(innFil.hasNext()){
for(int i=0; i<500; i++){
// String innLest=br.nextLine();
innlesningsarray=innFil.nextLine().split("\t");
System.out.println(innlesningsarray[i]);
System.out.println(innFil.nextLine());
}
System.out.println("test");
}
System.out.println("Test2");
} catch(Exception e){
System.out.print(e);
}
}
}
在这部分之后,我有一个 Acronyms 和东西的对象,但那里没有错误......
错误:
AA 自动应答
AAB 全方位广播
java.lang.ArrayIndexOutOfBoundsException:1