java中如何把集合中的内容写到.txt文件中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中如何把集合中的内容写到.txt文件中相关的知识,希望对你有一定的参考价值。
可以直接使用java的对象流, 即系列化, 把一个对象输出到文件中 示例代码如下:
public void saveLoginInfo()
String userDir = System.getProperty("user.txt"); //读取用户目录下的文件
File userFile = new File(userDir + File.separator + "obj.txt");
if(userFile.exists())
userFile.delete();
try
ObjectOutputStream oop = new ObjectOutputStream(new FileOutputStream(userFile));
oop.writeObject(object);
oop.flush();
oop.close();
//log("登录信息已保存");
catch (Exception e)
//log("保存失败 : " + e.getMessage());
public void raadLoginInfo()
String userDir = System.getProperty("user.home"); //读取用户目录下的文件
File userFile = new File(userDir + File.separator + "ojb.txt");
if(!userFile.exists())
return;
try
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(userFile));
object = ois.readObject();
ois.close();
catch (Exception e)
//log("读取失败 : " + e.getMessage());
参考技术A 循环集合,取出数据,IO写入 就完事儿了 参考技术B 循环集合,取出数据,IO写入 就完事儿了追问
能用代码表示一下吗,特别是集合写入文件的过程,感谢啊
追答BufferedWriter bw = new BufferedWriter(new FileWriter(new File("ddd.txt")));
String str = list.get(0);
bw.write(str);
bw.flush();
最后要bw.close();
以上是关于java中如何把集合中的内容写到.txt文件中的主要内容,如果未能解决你的问题,请参考以下文章
java 怎么用10个线程去读取文件夹里100个txt文件中的内容,读完之后同步写到一个文件中去。
用java语言编写:从文件in.txt中读取内容,再将它写到文件out.txt中,in.txt采用本地平台默认的字符编码,