码迷,mamicode.com
首页 > 其他好文 > 详细

【把 ArrayList 集合中的字符串内容写到文本文件中】

时间:2018-12-08 13:22:35      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:iter   new   code   shu   lis   hello   List 集合   mon   static   

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 shusheng@yiji.com
 * @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 集合中的字符串内容写到文本文件中】

标签:iter   new   code   shu   lis   hello   List 集合   mon   static   

原文地址:https://www.cnblogs.com/zuixinxian/p/10086902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!