ObjectOutputStream replaceObject()方法
java.io.ObjectOutputStream.replaceObject(Object obj) 此方法允许ObjectOutputStream的受信任子类的序列化过程中一个对象替代另一个。
在调用enableReplaceObject之前,将禁用替换对象。enableReplaceObject方法检查请求替换的流是否可以信任。写入序列化流的每个对象的第一次出现都传递给replaceObject。对对象的后续引用将由对replaceObject的原始调用返回的对象替换。为了确保不会无意间暴露对象的私有状态,只有受信任的流才能使用replaceObject。
ObjectOutputStream.writeObject方法采用Object类型的参数(与Serializable类型相反),以允许将非序列化对象替换为可序列化对象的情况。
当子类替换对象时,必须确保在反序列化过程中必须进行互补替换,或者替换对象与要存储引用的每个字段兼容。类型不是字段或数组元素类型的子类的对象将通过引发异常来中止序列化,并且不会存储该对象。
首次遇到每个对象时,仅调用一次此方法。对该对象的所有后续引用都将重定向到新对象。此方法应返回要替换的对象或原始对象。
可以将Null作为要替换的对象返回,但是在包含对原始对象的引用的类中,可能会导致NullReferenceException,因为它们可能期望使用对象而不是Null。
1 语法
protected Object replaceObject(Object obj)
2 参数
obj:要替换的对象。
3 返回值
此方法返回替换指定对象的替代对象。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.ObjectOutputStream.replaceObject(Object obj)方法的例子
*/
import java.io.*;
public class Demo extends ObjectOutputStream {
public Demo(OutputStream out) throws IOException {
super(out);
}
public static void main(String[] args) {
Object s = "Bye World!";
Object s2 = "Hello World!";
try {
// create a new file with an ObjectOutputStream
FileOutputStream out = new FileOutputStream("test.txt");
Demo oout = new Demo(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();
}
}
}
输出结果为:
Hello World!
Bye World!
热门文章
优秀文章