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

Java.io.ObjectInputStream.defaultReadObject()方法實例

java.io.ObjectInputStream.defaultReadObject() 方法從該流中讀取當前類的非靜態和非瞬態字段。這也許隻能稱為從類反序列化readObject方法。它會拋出NotActiveException如果它被調用。

聲明

以下是java.io.ObjectInputStream.defaultReadObject()方法聲明

public void defaultReadObject()

參數

  • NA

返回值

This method does not return a value.

異常

  • ClassNotFoundException -- 如果找不到這個類序列化的對象。

  • IOException -- 如果發生I/ O錯誤。

  • NotActiveException -- 如果流冇有正在讀取對象。

例子

下麵的示例演示java.io.ObjectInputStream.defaultReadObject()方法的用法。

package com.yiibai;

import java.io.*;

public class ObjectInputStreamDemo {

   public static void main(String[] args) {

      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.writeObject(new Example());
         oout.flush();

         // create an ObjectInputStream for the file we created before
         ObjectInputStream ois =
                 new ObjectInputStream(new FileInputStream("test.txt"));

         // read the object and print the string
         Example a = (Example) ois.readObject();

         // print the string that is in Example class
         System.out.println("" + a.s);


      } catch (Exception ex) {
         ex.printStackTrace();
      }


   }

   static class Example implements Serializable {

      String s = "Hello World!";

      private void readObject(ObjectInputStream in)
              throws IOException, ClassNotFoundException {
         in.defaultReadObject();

      }
   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

Hello World