Java.io.ObjectOutputStream.enableReplaceObject()方法實例
java.io.ObjectOutputStream.enableReplaceObject(boolean enable) 方法使流做流中置換的對象。當啓用時,replaceObject方法被調用每個對象被序列化。如果enable爲true,並且已經安裝了安全管理器,則此方法首先調用安全管理器的checkPermission方法用的SerializablePermission(「enableSubstitution在」)權限,以確保可以使得數據流做流中的替換對象。
聲明
以下是java.io.ObjectOutputStream.enableReplaceObject()方法的聲明
protected boolean enableReplaceObject(boolean enable)
參數
- enable -- 布爾參數來啓用替代對象
返回值
此方法返回之前的設置在這個方法被調用之前
異常
- SecurityException -- 如果安全管理器存在並且其checkPermission方法拒絕使流做流中的替換對象。
例子
下面的示例演示java.io.ObjectOutputStream.enableReplaceObject()方法的用法。
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); // enable replacing objects and return the previous setting System.out.println("" + oout.enableReplaceObject(true)); // write something in the file oout.writeInt(i); oout.writeInt(1653984); oout.flush(); // close the stream oout.close(); // 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