繁体   English   中英

附加输出流-Java

[英]Appendable Output Stream - Java

我正在将对象附加到二进制文件。 我的教授为我们提供了一个“可附加的”输出流类供我们在此作业上使用,据我的理解,这是应该防止标题损坏的原因。 但是,当我尝试打开二进制文件时,我仍然收到损坏的标头。 该文件的名称为test.dat ,据我所知,程序可以很好地写入数据,但是,一旦我尝试从中读取数据,一切就会消失。

fileName是在这些方法所定义的同一类中的数据字段,其定义如下: File filename = new File("test.dat");

如果有人能指出我正确的方向,那就太好了! 提前致谢

我的密码

 /**
 Writes a pet record to the file

 @param pets The pet record to write
 */
 public static void writePets(PetRecord pet){
   AppendObjectOutputStream handle = null;
   try{
     handle = new AppendObjectOutputStream(new FileOutputStream(fileName, true));
     handle.writeObject(pet);
     handle.flush();
   } catch (IOException e){
    System.out.println("Fatal Error!");
    System.exit(0);
   } finally {
   try{
    handle.close();
   } catch (IOException e){
     e.printStackTrace();
   }
 }
}

  /**
  Reads all pets from the file so long as the user continues to enter "next"
  */
  public static void readPets(){
    Scanner keys = new Scanner(System.in);
    String input = "";
    ObjectInputStream handle = null;
    PetRecord pet = null;
    try{
      handle = new ObjectInputStream(new FileInputStream(fileName)); // stack trace points here
      do{
        try{
          pet = (PetRecord) handle.readObject();
          System.out.println("\n" + pet);
          System.out.println("[*] type \"next\" to continue");
          input = keys.nextLine();
        } catch (IOException e){
          System.out.println("\t[*] No More Entries [*]");
          e.printStackTrace();
          break;
        }
      } while (input.matches("^n|^next"));
      handle.close();
    } catch (ClassNotFoundException e){
      System.out.println("The dat file is currupted!");
    } catch (IOException e){
      System.out.println("\t[*] No Entries! [*]");
      e.printStackTrace();
    }
  }

提供的课程:

public class AppendObjectOutputStream extends ObjectOutputStream
{
   // constructor
   public AppendObjectOutputStream( OutputStream out ) throws IOException
   {
      // this constructor just calls the super (parent)
      super(out);
   }

   @Override
   protected void writeStreamHeader() throws IOException
   {
      // this forces Java to clear the previous header, re-write a new header,
      // and prevents file corruption
      reset();
   }
}

堆栈轨迹:

java.io.StreamCorruptedException: invalid stream header: 79737200
    at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:808)
    at java.io.ObjectInputStream.<init>(ObjectInputStream.java:301)
    at UIHandle.readPets(UIHandle.java:381)
    at UIHandle.list(UIHandle.java:79)
    at UIHandle.command(UIHandle.java:103)
    at UIHandle.mainUI(UIHandle.java:40)
    at UIHandle.main(UIHandle.java:405)

事实证明,如果在添加文件之前确保文件已退出,这将很有帮助。 问题不在于读取文件,而是试图在文件不存在时追加到文件中。 该修补程序很简单,如果/其他则可以检查文件是否存在。 如果不存在,则照常编写文件;如果确实存在,则使用自定义附加类。

  /**
  Writes a pet record to the file
  @param pet The pet record to write
  */
  public static void writePet(PetRecord pet){
    if (fileName.exists()){
      AppendObjectOutputStream handle = null;
      try{
        handle = new AppendObjectOutputStream(new FileOutputStream(fileName, true));
        handle.writeObject(pet);
        handle.flush();
      } catch (IOException e){
        System.out.println("Fatal Error!");
        System.exit(0);
      } finally {
        try{
          handle.close();
        } catch (IOException e){
          e.printStackTrace();
        }
      }
    } else {
      ObjectOutputStream handle = null;
      try{
        handle = new ObjectOutputStream(new FileOutputStream(fileName));
        handle.writeObject(pet);
        handle.flush();
      } catch (IOException e){
        System.out.println("Fatal Error!");
        System.exit(0);
      } finally {
        try{
          handle.close();
        } catch (IOException e){
          e.printStackTrace();
        }
      }
    }
  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM