对象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流

上一篇:测试find 命令删除文件速度


下一篇:mathtype在word中的使用