位置:首頁 > Java技術 > Java.io包 > Java.io.ObjectOutputStream.annotateClass()方法實例

Java.io.ObjectOutputStream.annotateClass()方法實例

java.io.ObjectOutputStream.annotateClass(Class<?> cl) 可以由子類來實現,以允許類的數據被存儲在流中。默認情況下,此方法不執行任何操作。在ObjectInputStream的對應方法是resolveClass。這個方法被流中的每個唯一的類調用一次。類名和簽名將寫入流。此方法可以自由使用ObjectOutputStream來保存,類的任何聲明適用(例如,類文件的字節數)。在ObjectInputStream中的相應子類resolveClass方法必須讀取和使用數據或寫入annotateClass對象。

聲明

以下是java.io.ObjectOutputStream.annotateClass()方法聲明

protected void annotateClass(Class<?> cl)

參數

  • cl -- 類注釋的自定義數據

返回值

此方法冇有返回值

異常

  • NA

例子

下麵的示例演示java.io.ObjectOutputStream.annotateClass()方法的用法。

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 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