void useProtocolVersion(int version)


描述

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

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

声明

以下是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!