我知道这是一个常见问题,但是,我不确定为什么即使在做研究之后我也会收到错误。
import java.io.*;
import java.util.*;
public class readfile {
private Scanner x;
public void openFile(){
try{
x = new Scanner(new File("input.txt"));
}
catch(Exception e){
System.out.println("Oh noes, the file has not been founddd!");
}
}
public void readFile(){
int n = 0;
n = Integer.parseInt(x.next()); //n is the integer on the first line that creates boundaries n x n in an array.
System.out.println("Your array is size ["+ n + "] by [" + n +"]");
//Create n by n array.
int[][] array = new int[n][n];
//While there is an element, assign array[i][j] = the next element.
while(x.hasNext()){
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
array[i][j] = Integer.parseInt(x.next());
System.out.printf("%d", array[i][j]);
}
System.out.println();
}
}
}
public void closeFile(){
x.close();
}
}
我正在读取包含邻接矩阵的文本文件,其中第一行表示矩阵的大小。 ie)第1行读取5.因此我创建了一个5x5的2d数组。我遇到的问题是在我读取文件并打印它之后,我得到了NoSuchElement异常。提前谢谢!
注意:我很好奇,我已经看到我需要在循环中使用x.hasNext(),所以我不认为有没有输入。但是,我做到了这一点。不确定是什么问题。
输出:
Your array is size [7] by [7]
0110011
1000000
1001000
0010001
0000001
1000001
Exception in thread "main" java.util.NoSuchElementException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at readfile.readFile(readfile.java:32)
at verticies.main(verticies.java:8)
答案 0 :(得分:0)
看起来您的代码正在读取整行作为int,是这些数字中的每一个:
0110011 1000000 1001000 0010001 0000001 1000001
意味着每行形成7位数?
如果是这种情况,则需要将每个值拆分为其相应子数组的组成部分。
在这种情况下,请改用此部分代码:
while(x.hasNext()){
for(int i = 0; i < n; i++){
String line = x.next();
for(int j = 0; j < n; j++){
array[i][j] = line.charAt(j) - '0';
System.out.printf("%d", array[i][j]);
}
System.out.println();
}
}