Java,Parser只解析一次数据。需要解析到eof

时间:2013-06-26 17:47:45

标签: java parsing eof hung

  • 我有一个二进制数据的GB文件。
  • 在此文件中有许多数据部分。
  • 每个数据部分都包含在我不想要的垃圾中。
  • 在我不想要的垃圾中,有不断的指示标记告诉我数据何时出现。
  • 我读了一些字节,读取了我不想要的废话,以便找到一段数据,然后只将数据解析为输出文件。

到目前为止,我已经完成了这项工作。除了它只解析一次,然后停止。程序仍在运行,输出文件中只有一段解析数据。所以它挂断了。我需要程序从最后一节继续,寻找下一个标记,然后解析下一节并继续这样做直到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();
 }

1 个答案:

答案 0 :(得分:1)

dis.close()将关闭基础FileInputStream,因此您只读取一个部分。移动DataInputStream在while循环之外打开和关闭(当你在它时,将所有的close调用放在finally块中)。