序列换&反序列化
序列化:把一个对象从内存中存放到硬盘中的过程
//所有要序列化的类都必须实现Serializable接口
Dog d=new Dog("来福1","公",23);
File file = new File("f://图片//dog1");
FileOutputStream fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos);
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(d);
//关闭必须由内而外!
oos.close();
bos.close();
fos.close();
System.out.println("ok");
反序列化:将对象从硬盘介质中还原到内存中
File file = new File("f://图片//dog");
FileInputStr
序列换&反序列化最先出现在Python成神之路。
版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/18753.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论