我正在尝试用Java读取某个文件并将其转换为多维数组。每当我从脚本中读取一行代码时,控制台都会说:
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
提前致谢。
答案 0 :(得分:7)
问题1 - &gt; int x = 1;
解决方案:x应该从0开始
问题2-&gt;
((ArrayList)guildsArray.get(x)).add(Guild[i]);
您正在增加x
所以if x >= guildsArray.size()
然后您将获得java.lang.IndexOutOfBoundsException
解决方案
if( x >= guildsArray.size())
guildsArray.add(new ArrayList());
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];
}
}
答案 1 :(得分:0)
问题出在这里:
... guildsArray.get(x) ...
但是在这里引起:
int x = 1;
while (scanner.hasNextLine()) {
...
因为集合和数组是从零开始的(第一个元素是索引0
)。
试试这个:
int x = 0;