我仍然是 Java 新手,我有这个代码。我不知道如何将输入文件传递给代码。我正在使用 Eclipse Juno。
public static void main(String[] args) {
In in = new In(args[0]); // input file
int N = in.readInt(); // N-by-N percolation system
// turn on animation mode
StdDraw.show(0);
// repeatedly read in sites to open and draw resulting system
Percolation perc = new Percolation(N);
draw(perc, N);
StdDraw.show(DELAY);
while (!in.isEmpty()) {
int i = in.readInt();
int j = in.readInt();
perc.open(i, j);
draw(perc, N);
StdDraw.show(DELAY);
}
}
每当我运行它时,我都会得到这个异常:
线程“主”java.lang.ArrayIndexOutOfBoundsException 中的异常:PercolationVisualizer.main 中的 0(PercolationVisualizer.java:42)
什么可能导致此异常?能否请您耐心解释一下代码中如何调用输入文件的过程?