栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

FileOutputStream打开一个新文件,并在创建文件时将其删除

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

FileOutputStream打开一个新文件,并在创建文件时将其删除

  • 如果有专用文件,没有内容,则不读取对象,仅第一次添加列表
  • 如果存在具有内容的指定文件(意味着只有一个链表对象),则将其读取,然后将新客户端添加到列表中,并将链表对象写回到该文件中。

您可以通过以下方式执行此操作:

File file = new File("person.txt");boolean toWrite = false;boolean toModify = false;if (file.exists()){   if (file.length() == 0)   {     toWrite = true;   }   else    {     toModify = true;   }}if (toWrite || !file.exists()){     FileOutputStream fos = new FileOutputStream(file);     ObjectOutputStream oos = new ObjectOutputStream(fos);     oos.writeObject(list);     fos.close();     oos.close();}else if (toModify){   FileInputStream fins = new FileInputStream(file);   ObjectInputStream oins = new ObjectInputStream(fins);   linkedList<Person> temp = (linkedList<Person>)oins.readObject();   fins.close();   oins.close();   temp.add(per);   temp.add(per2);   temp.add(per3);   temp.add(per4);   FileOutputStream fos = new FileOutputStream(file);   ObjectOutputStream oos = new ObjectOutputStream(fos);   oos.writeObject(temp);   fos.close();   oos.close();}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/516012.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号