protected boolean enableReplaceObject(boolean enable)


描述

所述java.io.ObjectOutputStream.enableReplaceObject(boolean enable)方法使流对象进行替换的信息流中。启用后,将为每个要序列化的对象调用replaceObject方法。

如果enable为true,并且安装了安全管理器,则此方法首先使用SerializablePermission(“enableSubstitution”)权限调用安全管理器的checkPermission方法,以确保可以使流替换流中的对象。

声明

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

protected boolean enableReplaceObject(boolean enable)

参数

enable - 布尔参数,用于替换对象。

返回值

此方法在调用此方法之前返回先前的设置。

异常

SecurityException - 如果存在安全管理器且其checkPermission方法拒绝启用流来替换流中的对象。

实例

以下示例显示了java.io.ObjectOutputStream.enableReplaceObject()方法的用法。

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) {
      int i = 319874;

      try {
         // create a new file with an ObjectOutputStream
         FileOutputStream out = new FileOutputStream("test.txt");
         ObjectOutputStreamDemo oout = new ObjectOutputStreamDemo(out);

         // enable replacing objects and return the previous setting
         System.out.println("" + oout.enableReplaceObject(true));

         // write something in the file
         oout.writeInt(i);
         oout.writeInt(1653984);
         oout.flush();

         // 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("" + ois.readInt());

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

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

false
319874
1653984