把 ArrayList 集合中的字符串内容写到文本文件中
Posted zuixinxian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把 ArrayList 集合中的字符串内容写到文本文件中相关的知识,希望对你有一定的参考价值。
package com.companyname.common.test; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; /** * @Description 把 ArrayList 集合中的字符串内容写到文本文件中 * @Author Created by shusheng. * @Email [email protected] * @Date 2018/12/2 */ public class ArrayListToFileDemo { public static void main(String[] args) throws IOException { ArrayList<String> array = new ArrayList<String>(); array.add("hello"); array.add("world"); array.add("java"); BufferedWriter bw = new BufferedWriter(new FileWriter("a.txt")); for(String s:array){ bw.write(s); bw.newLine(); bw.flush(); } bw.close(); } }
以上是关于把 ArrayList 集合中的字符串内容写到文本文件中的主要内容,如果未能解决你的问题,请参考以下文章
把ArrayList集合的字符串存储到文本文件/把文本文件的数据存储到ArrayList集合中