把 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集合中

java 21 - 10 文本文件和集合之间互相存储数据

java中如何把集合中的内容写到.txt文件中

深入浅出理解Java中的ArrayList集合

用Java中的ArrayList实现:去除集合中字符串的重复值(字符串的内容相同)

Java中,怎样把一段文字写入一个文本文件中?