我正在尝试读取一个pgm文件(512x512数组),当我读入一个更大的文件时,我在读取元素(3,97)上收到错误: java.util.NoSuchElementException 。
我创建了一个更小的文件来阅读(23x23),它读得很好。有尺寸限制吗?我检查了文件并确认该值有一个int: 这似乎是它崩溃的路线:
fileArray[row][col] = scan.nextInt();
这是文件:
import java.util.Scanner;
import java.io.*;
public class FileReader {
public static void main(String[] args) throws IOException {
String fileName = "lena.pgma";
int width, height, maxValue;
FileInputStream fileInputStream = null;
fileInputStream = new FileInputStream(fileName);
Scanner scan = new Scanner(fileInputStream);
// Discard the magic number
scan.nextLine();
// Discard the comment line
scan.nextLine();
// Read pic width, height and max value
width = scan.nextInt();
System.out.println("Width: " + width);
height = scan.nextInt();
System.out.println("Heigth: " + height);
maxValue = scan.nextInt();
fileInputStream.close();
// Now parse the file as binary data
FileInputStream fin = new FileInputStream(fileName);
DataInputStream dis = new DataInputStream(fin);
// look for 4 lines (i.e.: the header) and discard them
int numnewlines = 4;
while (numnewlines > 0) {
char c;
do {
c = (char)(dis.readUnsignedByte());
} while (c != '\n');
numnewlines--;
}
// read the image data
int[][] fileArray = new int[height][width];
for (int row = 0; row < height; row++) {
for (int col = 0; col < width; col++) {
fileArray[row][col] = scan.nextInt();
System.out.print("(" + row + " ," + col +"): " + fileArray[row][col]+ " ");
}
System.out.println();
}
dis.close();
}
}
任何建议都将不胜感激。
答案 0 :(得分:0)
您已关闭scan
对象正在使用的InputStream,然后再打开另一个。毫不奇怪,scan
对象耗尽了整数。它可能在关闭之前缓冲一些输入流,这就是为什么它完成了读取较小的文件但在较大的文件上失败的原因。
您需要根据稍后打开的新输入流制作新的Scanner
对象。