Java.io.ObjectOutputStream.reset()方法實例
java.io.ObjectOutputStream.reset()方法將忽略已經寫入流中的任何對象的狀態。的狀態被重置為相同的新對象輸出。當前點在流中被標記為複位,相應的ObjectInputStream將在相同的點被複位。以前寫入流對象將不會被方稱為已在流中存在。它們將被再次寫入流。
聲明
以下是java.io.ObjectOutputStream.reset()方法的聲明
public void reset()
參數
-
obj -- 被替換的對象
返回值
此方法冇有返回值。
異常
-
IOException -- 如果reset()被調用在序列化一個對象。
例子
下麵的示例演示java.io.ObjectOutputStream.reset()方法的用法。
package com.yiibai; import java.io.*; public class ObjectOutputStreamDemo { public static void main(String[] args) { Object s = "Hello World!"; Object s2 = "Bye World!"; 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(s); // reset the stream and rewrite what is already written oout.reset(); // write something again oout.writeObject(s2); // 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 a string System.out.println("" + (String) ois.readObject()); System.out.println("" + (String) ois.readObject()); } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hello World! Bye World!