當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.ObjectInputStream.readObject()用法及代碼示例



描述

這個java.io.ObjectInputStream.readObject()方法從 ObjectInputStream 中讀取一個對象。讀取對象的類、類的簽名以及類及其所有超類型的非瞬態和非靜態字段的值。可以使用 writeObject 和 readObject 方法覆蓋類的默認反序列化。由該對象引用的對象被傳遞讀取,以便 readObject 重建完整的對象等效圖。

當根對象的所有字段和它引用的對象完全恢複時,根對象也完全恢複。此時,對象驗證回調將根據其注冊的優先級按順序執行。回調由對象注冊(在 readObject 特殊方法中),因為它們被單獨恢複。

對於 InputStream 的問題和不應反序列化的類,將引發異常。所有異常對 InputStream 都是致命的,並使其處於不確定狀態;忽略或恢複流狀態取決於調用者。

聲明

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

public final Object readObject()

參數

NA

返回值

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

異常

  • ClassNotFoundException− 找不到序列化對象的類。

  • InvalidClassException- 序列化使用的類有問題。

  • StreamCorruptedException− 流中的控製信息不一致。

  • OptionalDataException- 在流中找到原始數據而不是對象。

  • IOException− 任何常見的輸入/輸出相關異常。

示例

下麵的例子展示了使用java.io.ObjectInputStream.readObject()方法。

package com.tutorialspoint;

import java.io.*;

public class ObjectInputStreamDemo {
   public static void main(String[] args) {
      String s = "Hello World";
      byte[] b = {'e', 'x', 'a', 'm', 'p', 'l', 'e'};
      
      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.writeObject(b);
         oout.flush();

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

         // read and print an object and cast it as string
         System.out.println("" + (String) ois.readObject());

         // read and print an object and cast it as string
         byte[] read = (byte[]) ois.readObject();
         String s2 = new String(read);
         System.out.println("" + s2);
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

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

Hello World
example

相關用法


注:本文由純淨天空篩選整理自 Java.io.ObjectInputStream.readObject() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。