Java.io.ObjectInputStream.readObject() 方法



描述

java.io.ObjectInputStream.readObject() 方法从 ObjectInputStream 读取一个对象。对象的类、类的签名以及类及其所有超类的非瞬态和非静态字段的值都会被读取。可以使用 writeObject 和 readObject 方法覆盖类的默认反序列化。此对象引用的对象会进行传递性读取,以便通过 readObject 重建完整的等效对象图。

当所有字段以及它引用的对象都完全恢复时,根对象就会被完全还原。此时,对象验证回调将根据其注册的优先级按顺序执行。回调由对象(在其 readObject 特殊方法中)在它们分别恢复时注册。

如果 InputStream 出现问题,或者不应该反序列化的类,则会抛出异常。所有异常都会对 InputStream 造成致命影响,并将其置于不确定的状态;调用方需要忽略或恢复流状态。

声明

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

public final Object readObject()

参数

返回值

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

异常

  • 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.htm
广告