Java Java.io.ObjectInputStream readObjectOverride() 方法

  • 描述

    java.io.ObjectInputStream.readObjectOverride()方法,该子类使用受保护的无参数构造函数构造了ObjectOutputStream。期望该子类提供带有修饰符“ final”的重写方法。
  • 声明

    以下是java.io.ObjectInputStream.readObjectOverride()方法的声明。
     protected Object readObjectOverride()
  • 参数

    不适用
  • 返回值

    此方法返回从流读取的Object。
  • 异常

    • ClassNotFoundException找不到序列化对象的类。
    • OptionalDataException在流中找到原始数据,而不是对象。
    • IOException如果从基础流读取时发生I / O错误
  • 例子

    以下示例显示java.io.ObjectInputStream.readObjectOverride()方法的用法。
     
    package com.jc2182;
    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