为了账号安全,请及时绑定邮箱和手机立即绑定

io的问题 基于字符流,实现Manger对象的持久化,并测试。

io的问题 基于字符流,实现Manger对象的持久化,并测试。

qq_摆摊卖忧伤_0 2017-01-05 17:35:09
基于字符流,实现Manger对象的持久化,并测试。
查看完整描述

1 回答

?
hlc157248yx

TA贡献3条经验 获得超1个赞

//  对象序列化后,保存到文件中去

String file = "demo/obj.dat";

//实例化一个ObjectOutputStream,参数是一个文件字节流FileOutputStream

ObjectOutputStream oos = new ObjectOutputStream(

new FileOutputStream(file));


//实例化一个对象

Student stu = new Student("10001", "小明", 20);


//写入文件

oos.writeObject(stu);

oos.flush();

oos.close();


//反序列化

String file = "demo/obj.dat";

ObjectInputStream ois = new ObjectInputStream(

new FileInputStream(file));


Student stu = (Student)ois.readObject();


System.out.println(stu);

ois.close();


查看完整回答
反对 回复 2017-01-10
  • 1 回答
  • 0 关注
  • 955 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信