我一直在研究一个项目,该项目将每行扫描一个文本文件行,并且在每一行,该行中的每个单词都将存储在一个数组中
这是我现在的代码。当涉及从 Answer.txt 文件存储时,会发生错误。有人可以帮帮我吗?
try
{
String s = sc.nextLine();
//System.out.println(s);
String[] Question = s.split(" ");
for(int i=0;i<=Question.length;i++)
{
System.out.println(Question[i]);
}//debug
s = sc2.nextLine();
//System.out.println(s2);
String[] Answer = s.split(" ");
for(int c=0;c<=Answer.length;c++)
{
System.out.println(Answer[c]);
}//debug
}
catch (ArrayIndexOutOfBoundsException e)
{
System.out.println("...");
}