ObjectOutputStream enableReplaceObject()方法

java.io.ObjectOutputStream.enableReplaceObject(boolean enable) 此方法使流执行流中的替换对象。

启用后,将为每个要序列化的对象调用replaceObject方法。

如果enable为true,并且安装了安全管理器,则此方法首先调用具有Seri​​alizablePermission("enableSubstitution")权限的安全管理器的checkPermission方法,以确保可以启用流来替换流中的对象。

1 语法

protected boolean enableReplaceObject(boolean enable)

2 参数

enable:布尔参数启用对象替换。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.ObjectOutputStream.enableReplaceObject(boolean enable)方法的例子
 */
import java.io.*;

public class Demo extends ObjectOutputStream {

    public Demo(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");
            Demo oout = new Demo(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

热门文章

优秀文章