Java.io.ObjectInputStream.registerValidation()方法實例
java.io.ObjectInputStream.registerValidation(ObjectInputValidation obj, int prio) 方法用於注冊對象的圖形被返回之前進行驗證。雖然類似resolveObject這些驗證被稱為整個圖形被改組之後。通常情況下,一個readObject方法將注冊對象,這樣,當所有的對象都恢複了最後一組的驗證可以進行數據流。
聲明
以下是java.io.ObjectInputStream.registerValidation()方法聲明
public void registerValidation(ObjectInputValidation obj, int prio)
參數
-
obj -- 接收驗證回調的對象。
-
prio -- 控製回調的順序,0是一個很好的默認值。使用更高的數字被稱為背前麵,較小的數字後回調。在一個優先級,回調在冇有特定的順序進行處理。
返回值
此方法無返回值。
異常
-
NotActiveException -- 該流不是正在讀取對象,因此是無效的注冊一個回調函數。
-
InvalidObjectException -- 驗證對象為null。
例子
下麵的示例演示java.io.ObjectInputStream.registerValidation()方法的用法。
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); // validate the object a.validateObject(); } catch (Exception ex) { ex.printStackTrace(); } } static class Example implements Serializable, ObjectInputValidation { String s = "Hello World!"; private String readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { // call readFields in readObject ObjectInputStream.GetField gf = in.readFields(); // register validation for the object in.registerValidation(this, 0); // save the string and return it return (String) gf.get("s", null); } public void validateObject() throws InvalidObjectException { System.out.println("Validating object..."); if (this.s.equals("Hello World!")) { System.out.println("Validated."); } else { System.out.println("Not validated."); } } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hello World! Validating object... Validated.