Java.io.ObjectInputStream.readUnshared() 方法



描述

java.io.ObjectInputStream.readUnshared() 方法从 ObjectInputStream 读取一个“未共享”的对象。此方法与 readObject 相同,除了它可以防止随后对 readObject 和 readUnshared 的调用返回通过此调用获得的反序列化实例的其他引用。具体来说 -

  • 如果调用 readUnshared 来反序列化一个反向引用(之前已写入流的对象的流表示),则会抛出 ObjectStreamException

  • 如果 readUnshared 成功返回,则随后尝试反序列化对由 readUnshared 反序列化的流句柄的反向引用将导致抛出 ObjectStreamException。

通过 readUnshared 反序列化对象会使与返回的对象关联的流句柄失效。请注意,这本身并不总是保证由 readUnshared 返回的引用是唯一的;反序列化的对象可以定义一个 readResolve 方法,该方法返回对其他方可见的对象,或者 readUnshared 可以返回一个类对象或枚举常量,这些常量可以在流的其他地方或通过外部方式获取。如果反序列化的对象定义了一个 readResolve 方法,并且该方法的调用返回一个数组,则 readUnshared 返回该数组的浅拷贝;这保证了返回的数组对象是唯一的,并且无法从 ObjectInputStream 上对 readObject 或 readUnshared 的调用中第二次获得,即使底层数据流已被操作。

覆盖此方法的 ObjectInputStream 子类只能在拥有“enableSubclassImplementation”SerializablePermission 的安全上下文中构造;任何尝试在没有此权限的情况下实例化此类子类的操作都将导致抛出 SecurityException。

声明

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

public Object readUnshared()

参数

返回值

此方法返回对反序列化对象的引用。

异常

  • ClassNotFoundException − 如果无法找到要反序列化的对象的类。

  • StreamCorruptedException − 如果流中的控制信息不一致。

  • ObjectStreamException − 如果要反序列化的对象已出现在流中。

  • OptionalDataException − 如果原始数据是流中的下一个数据。

  • IOException − 如果在反序列化期间发生 I/O 错误。

示例

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

package com.tutorialspoint;

import java.io.*;

public class ObjectInputStreamDemo {
   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.writeUnshared(s);
         oout.flush();

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

         // read and print the unshared object
         System.out.println("" + ois.readUnshared());
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

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

Hello World
java_io_objectinputstream.htm
广告