位置:首頁 > Java技術 > Java.io包 > Java.io.ObjectInputStream.readObjectOverride()方法實例

Java.io.ObjectInputStream.readObjectOverride()方法實例

java.io.ObjectInputStream.readObjectOverride() 方法由ObjectOutputStream受信任子類使用受保護的無參數構造函數構造對象輸出流。該子類預計將提供一個覆蓋方法的修飾符“final”。

聲明

以下是java.io.ObjectInputStream.readObjectOverride()方法聲明

protected Object readObjectOverride()

參數

  • NA

返回值

這個方法從流中返回讀取的對象。

異常

  • ClassNotFoundException -- 無法找到一個序列化對象的類。

  • OptionalDataException -- 原始數據,發現數據流,而不是對象。

  • IOException -- 如果在從底層流讀取時出現I / O錯誤

例子

下麵的示例演示java.io.ObjectInputStream.readObjectOverride()方法的用法。

package com.yiibai;

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();
      }

   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

Hello World