ObjectOutputStream annotateProxyClass()方法

java.io.ObjectOutputStream.annotateProxyClass(Class<?> cl) 子类可以实现此方法来存储自定义数据的描述符动态代理类的流中。

这种方法只调用一次流中的每个唯一的代理类描述符。这种方法ObjectOutputStream默认实现不执行任何操作。

在ObjectInputStream对应方法是resolveProxyClass。对于对象输出流的一个给定的子类重写此方法,在ObjectInputStream相应子类的resolveProxyClass方法必须读取的任何数据或写入annotateProxyClass对象。

1 语法

protected void annotateProxyClass(Class<?> cl)

2 参数

cl:用于为其注释自定义数据的代理类。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.ObjectOutputStream.annotateProxyClass(Class<?> cl)方法的例子
 */
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);

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

            // call annotateProxyClass but it does nothing
            oout.annotateProxyClass(Integer.class);

            // 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();
        }
    }
}

输出结果为:

319874
1653984

热门文章

优秀文章