对象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流相关代码(ByteArrayInputStream类和ByteArrayOutputStream类相关代码)
JAVA IO流相关代码(ByteArrayInputStream类和ByteArrayOutputStream类相关代码)