到目前为止,我已经完成了这项工作。除了它只解析一次,然后停止。程序仍在运行,输出文件中只有一段解析数据。所以它挂断了。我需要程序从最后一节继续,寻找下一个标记,然后解析下一节并继续这样做直到eof。这是我的代码:
private static void startParse(File inFile) throws IOException{
boolean endOfFile = false;
DataInputStream dis = new DataInputStream(new FileInputStream(inFile));
while (!endOfFile){
try {
int integer;
long l;
while((l = (integer = dis.readInt())) != MARKER) {
//Don't do anything
}
for (int i = 0; i < 11; i++){
dis.read();
}
// ***************** checksum value *****************
byte[] checksum = new byte[2];
checksum[0] = (byte) dis.read();
checksum[1] = (byte) dis.read();
// ********************** data **********************
byte[] data = new byte[1016];
for(int i = 0; i < 1016; i++){
data[i] = (byte) dis.read();
}
for (int i = 0; i < 4; i++){
dis.read();
}
// ********************** fecf **********************
byte[] fecf = new byte[2];
fecf[0] = (byte) dis.read();
fecf[1] = (byte) dis.read();
// ***************** output data ********************
if (checksumCheck(checksum) && fecfCheck(fecf)){
FileOutputStream output = new FileOutputStream("ParsedData", true);
try{
output.write(data);
}
finally{
output.close();
}
}
else {
FileOutputStream output = new FileOutputStream("ParsedData", true);
try{
output.write(36606); //TODO: Change value to bad data flag.
}
finally{
output.close();
}
}
}
catch (EOFException eof) {
System.out.println("catch");
endOfFile = true;
}
}
dis.close();
}
答案 0 :(得分:1)
dis.close()
将关闭基础FileInputStream,因此您只读取一个部分。移动DataInputStream在while循环之外打开和关闭(当你在它时,将所有的close调用放在finally块中)。