ObjectInputStream resolveObject()方法
java.io.ObjectInputStream.resolveObject(Object obj) 方法允许ObjectInputStream的受信任子类反序列化过程中一个对象替代另一个。替换对象被禁用,直到enableResolveObject被调用。该enableResolveObject方法检查流要求解决的对象是可以信任的。每个引用序列化的对象传递给resolveObject。为了确保对象的私有状态不是无意间露出只有受信任的流使用resolveObject。
这种方法被称为一个对象已被读取后,但在此之前它是从readObject返回。默认resolveObject方法只返回相同的对象。
当一个子类取代对象时,必须确保在替代对象与参考将被存储的每个字段兼容。对象,其类型不是字段或数组元素中止序列化的通过引发异常,对象不会被保存的类型的子类。
1 语法
protected Object resolveObject(Object obj)
2 参数
obj:要替换的对象。
3 返回值
返回替换的对象。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.ObjectInputStream.resolveObject(Object obj)方法的例子
*/
import java.io.*;
public class Demo extends ObjectInputStream {
public Demo(InputStream in) throws IOException {
super(in);
}
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.writeUTF(s);
oout.flush();
// create an ObjectInputStream for the file we created before
Demo ois = new Demo(new FileInputStream("test.txt"));
// enable object resolving
ois.enableResolveObject(true);
// get the class for string and print the name
System.out.println("" + ois.resolveObject(ois.readUTF()));
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
输出结果为:
Hello World
热门文章
优秀文章