protected Object readObjectOverride


描述

所述java.io.ObjectInputStream.readObjectOverride()方法由构造的ObjectOutputStream使用受保护的无参数构造ObjectOutputStream的受信任子类调用。期望子类使用修饰符“final”提供覆盖方法。

声明

以下是java.io.ObjectInputStream.readObjectOverride()方法的声明。

protected Object readObjectOverride()

参数

NA

返回值

此方法返回从流中读取的Object。

异常

ClassNotFoundException - 找不到序列化对象的类。

OptionalDataException - 在流中找到原始数据而不是对象。

IOException - 如果从基础流读取时发生I / O错误

实例

以下示例显示了java.io.ObjectInputStream.readObjectOverride()方法的用法。

package com.tutorialspoint;

import java.io.*;

public class ObjectInputStreamDemo extends ObjectInputStream{

   public ObjectInputStreamDemo(InputStream in) throws IOException {
      super(in);
    }

   public static void main(String[] args) {
      String s = "Hello 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);
         oout.flush();

         // create an ObjectInputStream for the file we created before
         ObjectInputStreamDemo ois = new ObjectInputStreamDemo(new FileInputStream("test.txt"));

         // read and print an object and cast it as string
         System.out.println("" + (String)ois.readObjectOverride());
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果

null