Java.io.ObjectOutputStream 的 useProtocolVersion() 方法



描述

java.io.ObjectOutputStream.useProtocolVersion(int version) 方法指定写入流时使用的流协议版本。

此例程提供了一个钩子,使当前版本的序列化能够以与早期版本流格式向后兼容的格式进行写入。

声明

以下是java.io.ObjectOutputStream.useProtocolVersion() 方法的声明。

public void useProtocolVersion(int version)

参数

version − 使用来自 java.io.ObjectStreamConstants 的 ProtocolVersion。

返回值

此方法不返回值。

异常

  • IllegalStateException − 如果在序列化任何对象后调用。

  • IllegalArgumentException − 如果传入无效的版本。

  • IOException − 如果发生 I/O 错误

示例

以下示例显示了java.io.ObjectOutputStream.useProtocolVersion() 方法的用法。

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);

         // change protocol version
         oout.useProtocolVersion(ObjectStreamConstants.PROTOCOL_VERSION_1);

         // write something in the file
         oout.writeObject(s);
         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.htm
广告