當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.ObjectOutputStream.writeUnshared()用法及代碼示例



描述

這個java.io.ObjectOutputStream.writeUnshared(Object obj)方法將 "unshared" 對象寫入 ObjectOutputStream。此方法與 writeObject 相同,不同之處在於它始終將給定對象作為新的唯一對象寫入流中(而不是指向先前序列化實例的 back-reference)。特別是 -

  • 通過 writeUnshared 寫入的對象始終以與新出現的對象(尚未寫入流的對象)相同的方式進行序列化,無論該對象之前是否已寫入。

  • 如果 writeObject 用於寫入先前已使用 writeUnshared 寫入的對象,則先前的 writeUnshared 操作將被視為對單獨對象的寫入。換句話說,ObjectOutputStream 永遠不會為調用 writeUnshared 寫入的對象數據生成 back-references。

雖然通過 writeUnshared 寫入對象本身並不能保證在反序列化時對該對象的唯一引用,但它允許在一個流中多次定義單個對象,因此接收者對 readUnshared 的多次調用不會發生衝突。請注意,上述規則僅適用於使用 writeUnshared 編寫的 base-level 對象,不適用於要序列化的對象圖中的任何可傳遞引用的 sub-objects。

覆蓋此方法的 ObjectOutputStream 子類隻能在擁有 "enableSubclassImplementation" SerializablePermission 的安全上下文中構造;任何在沒有此權限的情況下實例化此類子類的嘗試都將導致拋出 SecurityException。

聲明

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

public void writeUnshared(Object obj)

參數

obj- 要寫入流的對象。

返回值

此方法不返回值。

異常

  • NotSerializableException− 如果要序列化的圖中的對象未實現 Serializable 接口。

  • InvalidClassException− 如果要序列化的對象的類存在問題。

  • IOException− 如果在序列化過程中發生 I/O 錯誤。

示例

下麵的例子展示了使用java.io.ObjectOutputStream.writeUnshared()方法。

package com.tutorialspoint;

import java.io.*;

public class ObjectOutputStreamDemo {
   public static void main(String[] args) {
      Object s = "Hello World!";
      Object i = 1974;
      
      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.writeUnshared(s);
         oout.writeUnshared(i);

         // 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 what we wrote before
         System.out.println("" + ois.readUnshared());
         System.out.println("" + ois.readUnshared());
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

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

Hello World!
1974

相關用法


注:本文由純淨天空篩選整理自 Java.io.ObjectOutputStream.writeUnshared() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。