我可以使用扫描仪读取文件。当返回类型为 void 时,我可以读取数据并将其打印到控制台,但是,随后它会立即引发 ArrayOutOfBoundsException。理想情况下,我想作为字符串数组返回,但是,我只得到一个 ArrayOutOfBoundsException。在这两种情况下,异常都会在 Cancers[j] = input.nextLine() 处引发。我已经确保数组的大小是正确的。当我不对它的大小进行硬编码时,编译器会在同一行抛出 NullPointerException(这是有道理的,因为未声明数组的大小)。
我需要该方法返回一个字符串数组,因为我必须对其进行额外的操作。
public String[] readCancer() {
cancers = new String[21];
int j = 0;
try {
input = new Scanner(myData);
String result;
while(input.hasNext()) {
++j;
cancers[j] = input.nextLine();
//System.out.println(cancers[j]);
}
} catch (FileNotFoundException fnfx) {
JOptionPane.showMessageDialog(null, "Txt file could not be found");
}
return cancers;
}
我尝试以稍微不同的方式重写该方法,但我得到了同样的错误,只是这次是在 output[i] = result;
public String[] readCancers() {
FileInputStream fis;
DataInputStream dis;
BufferedReader br;
InputStreamReader isr;
String result;
String[] output = new String[21];
int i = 0;
try {
fis = new FileInputStream(myData);
dis = new DataInputStream(fis);
isr = new InputStreamReader(dis);
br = new BufferedReader(isr);
while((result = br.readLine()) != null) {
++i;
output[i] = result;
}
} catch (FileNotFoundException fnfx) {
fnfx.printStackTrace();
} catch (IOException iox) {
iox.printStackTrace();
}
return output;
}