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


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



描述

這個java.io.ObjectOutputStream.reset()方法將忽略已寫入流的任何對象的狀態。狀態被重置為與新的 ObjectOutputStream 相同。流中的當前點被標記為重置,因此相應的 ObjectInputStream 將在同一點重置。先前寫入流的對象不會被稱為已經在流中。它們將再次寫入流。

聲明

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

public void reset()

參數

obj− 要替換的對象。

返回值

此方法不返回值。

異常

IOException− 如果在序列化對象時調用 reset()。

示例

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

package com.tutorialspoint;

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!

相關用法


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