Java.io.ObjectOutputStream.annotateProxyClass()方法實例
java.io.ObjectOutputStream.annotateProxyClass(Class<?> cl)可以由子類實現來存儲自定義數據的描述符動態代理類的流。這種方法隻調用一次流中的每個唯一的代理類描述符。這種方法ObjectOutputStream默認實現不執行任何操作。在ObjectInputStream對應方法是resolveProxyClass。對於對象輸出流的一個給定的子類重寫此方法,在ObjectInputStream相應子類的resolveProxyClass方法必須讀取的任何數據或寫入annotateProxyClass對象。
聲明
以下是java.io.ObjectOutputStream.annotateProxyClass()方法聲明
protected void annotateProxyClass(Class<?> cl)
參數
-
cl --代理類來注解自定義數據
返回值
這個方法冇有返回值
異常
-
IOException -- 拋出底層任何OutputStream異常
例子
下麵的示例演示java.io.ObjectOutputStream.annotateProxyClass()方法的用法。
package com.yiibai; import java.io.*; public class ObjectOutputStreamDemo extends ObjectOutputStream { public ObjectOutputStreamDemo(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"); ObjectOutputStreamDemo oout = new ObjectOutputStreamDemo(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