对象io流

Posted 刚刚好。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对象io流相关的知识,希望对你有一定的参考价值。

我们可以使用对象io流(本质是字节流)来直接向文件写入或读取对象


//写入使用ObjectOutputStream
ObjectOutputStream out=new ObjectOutputStream(new FileOutputStream("employee.dat"));
Person person=new Person("Wang",20);
out.writeObject(person);

//读取使用ObjectOutputStream
ObjectInputStream in=new ObjectInputStream(new FileInputStream("employee.dat"));
Person person=(Person) in.readObject();

需要注意的是,读取和写入的对象所在的类需要可序列化(继承Serializable接口)。

以上是关于对象io流的主要内容,如果未能解决你的问题,请参考以下文章

JAVA IO流相关代码(字符流:FileWriter类,FileReader类,BufferedReader类,BufferedWriter类)

Java核心类库-IO-包装流概述和缓冲流原理

JAVA IO流相关代码(ByteArrayInputStream类和ByteArrayOutputStream类相关代码)

JAVA IO流相关代码(ByteArrayInputStream类和ByteArrayOutputStream类相关代码)

IO流之再战猜拳小游戏

此应用小部件片段中所有意图 (PendingIntents) 的逻辑流