我試圖讀取Java中的某個文件,並將其製作成多維數組。每當我從腳本讀取一行代碼,控制檯說:Java ArrayList IndexOutOfBoundsException索引:1,大小:1
Caused by: java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
我知道這個錯誤是,當編碼無法達到的具體指標造成的,但我不知道如何在修復此時此刻。
這是我編碼的一個例子。
int x = 1;
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
//Explode string line
String[] Guild = line.split("\\|");
//Add that value to the guilds array
for (int i = 0; i < Guild.length; i++) {
((ArrayList)guildsArray.get(x)).add(Guild[i]);
if(sender.getName().equals(Guild[1])) {
//The person is the owner of Guild[0]
ownerOfGuild = Guild[0];
}
}
x++;
}
**文本文檔**
Test|baseman101|baseman101|0|
Test2|Player2|Player2|0|
其他解決方案,比如一個在這裏找到:Write to text file without overwriting in Java
在此先感謝。
好,異常說發生了什麼異常時的水平。數組大小爲1,您訪問位置1.您的邏輯不正確! – diegoaguilar
我以爲ArrayLists動態增加? – baseman101
他們確實增加dinamically,但他們是0基於和訪問比實際更大的索引將導致異常 – diegoaguilar