ObjectOutputStream annotateClass()方法

java.io.ObjectOutputStream.annotateClass(Class<?> cl) 子类可以实现此方法,以允许将类数据存储在流中。默认情况下,此方法不执行任何操作。ObjectInputStream中的相应方法是resolveClass。对于流中的每个唯一类,该方法仅被调用一次。

1 语法

protected void annotateClass(Class<?> cl)

2 参数

cl:要为其注释自定义数据的类。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.ObjectOutputStream.annotateClass(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 annotateClass but it does nothing
            oout.annotateClass(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

热门文章

优秀文章