Java.io.ObjectOutputStream.replaceObject() 方法

描述

java.io.ObjectOutputStream.replaceObject(Object obj) 方法将允许 ObjectOutputStream 的受信任子类在序列化期间用一个对象替换另一个对象。 在调用 enableReplaceObject 之前,禁用替换对象。 enableReplaceObject 方法检查请求进行替换的流是否可信。 写入序列化流的每个对象的第一次出现被传递给replaceObject。 对该对象的后续引用被替换为原始调用replaceObject 返回的对象。 为了确保对象的私有状态不会被无意暴露,只有受信任的流可以使用 replaceObject。

ObjectOutputStream.writeObject 方法采用 Object 类型(与 Serializable 类型相反)的参数,以允许将不可序列化对象替换为可序列化对象的情况。

当子类替换对象时,它必须确保在反序列化期间必须进行补充替换,或者确保替换的对象与将存储引用的每个字段兼容。 类型不是字段或数组元素类型的子类的对象会通过引发异常来中止序列化,并且不会存储该对象。

此方法仅在第一次遇到每个对象时调用一次。 对该对象的所有后续引用都将重定向到新对象。 此方法应返回要替换的对象或原始对象。

Null 可以作为要替换的对象返回,但在包含对原始对象的引用的类中可能会导致 NullReferenceException,因为它们可能期望一个对象而不是 null。


声明

以下是 java.io.ObjectOutputStream.replaceObject() 方法的声明。

protected Object replaceObject(Object obj)

参数

obj − 要替换的对象。


返回值

此方法返回替换指定对象的替代对象。


异常

IOException − 底层 OutputStream 抛出的任何异常。


示例

下面的例子展示了 java.io.ObjectOutputStream.replaceObject() 方法的使用。

package com.tutorialspoint;

import java.io.*;

public class ObjectOutputStreamDemo extends ObjectOutputStream {

   public ObjectOutputStreamDemo(OutputStream out) throws IOException {
      super(out);
   }

   public static void main(String[] args) {
      Object s2 = "Bye World!";
      
      try {
         // create a new file with an ObjectOutputStream
         FileOutputStream out = new FileOutputStream("test.txt");
         ObjectOutputStreamDemo oout = new ObjectOutputStreamDemo(out);

         // write something in the file
         oout.writeObject(s);
         oout.flush();

         // enable object replacing
         oout.enableReplaceObject(true);

         // replace object
         System.out.println("" + oout.replaceObject(s2));

         // close the stream
         oout.close();

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

         // read and print an int
         System.out.println("" + (String) ois.readObject());
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Bye World!
Hello World!