Java Java.io.ObjectOutputStream.reset() 方法

  • 描述

    java.io.ObjectOutputStream.reset()方法将忽略任何已写入流中的对象的状态。该状态被重置为与新的ObjectOutputStream相同。流中的当前点被标记为reset,因此相应的ObjectInputStream将在同一点被重置。先前写入流中的对象将不会被视为已经存在于流中。它们将再次写入流中。
  • 声明

    以下是java.io.ObjectOutputStream.reset()方法的声明。
     public void reset()
  • 参数

    obj要替换的对象。
  • 返回值

    此方法不返回值。
  • 异常

    IOException如果在序列化对象时调用reset()。
  • 例子

    以下示例显示java.io.ObjectOutputStream.reset()方法的用法。
     
    package com.jc2182; 
    import java.io.*;
    
    public class ObjectOutputStreamDemo {
       public static void main(String[] args) {
          Object s = "Hello World!";
          Object s2 = "Bye World!";
          
          try {
             // create a new file with an ObjectOutputStream
             FileOutputStream out = new FileOutputStream("test.txt");
             ObjectOutputStream oout = new ObjectOutputStream(out);
    
             // write something in the file
             oout.writeObject(s);
    
             // reset the stream and rewrite what is already written
             oout.reset();
    
             // write something again
             oout.writeObject(s2);
    
             // close the stream
             oout.close();
    
             // create an ObjectInputStream for the file we created before
             ObjectInputStream ois = new ObjectInputStream(new FileInputStream("test.txt"));
    
             // read and print a string
             System.out.println("" + (String) ois.readObject());
             System.out.println("" + (String) ois.readObject());
          } catch (Exception ex) {
             ex.printStackTrace();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     
    Hello World!
    Bye World!