Java.io.ObjectInputStream.readObjectOverride()方法实例
java.io.ObjectInputStream.readObjectOverride() 方法由ObjectOutputStream受信任子类使用受保护的无参数构造函数构造对象输出流。该子类预计将提供一个覆盖方法的修饰符“final”。
声明
以下是java.io.ObjectInputStream.readObjectOverride()方法声明
protected Object readObjectOverride()
参数
-
NA
返回值
这个方法从流中返回读取的对象。
异常
-
ClassNotFoundException -- 无法找到一个序列化对象的类。
-
OptionalDataException -- 原始数据,发现数据流,而不是对象。
-
IOException -- 如果在从底层流读取时出现I / O错误
例子
下面的示例演示java.io.ObjectInputStream.readObjectOverride()方法的用法。
package com.yiibai; import java.io.*; public class ObjectInputStreamDemo extends ObjectInputStream{ public ObjectInputStreamDemo(InputStream in) throws IOException { super(in); } public static void main(String[] args) { String s = "Hello 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); oout.flush(); // create an ObjectInputStream for the file we created before ObjectInputStreamDemo ois = new ObjectInputStreamDemo(new FileInputStream("test.txt")); // read and print an object and cast it as string System.out.println("" + (String)ois.readObjectOverride()); } catch (Exception ex) { ex.printStackTrace(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
Hello World