码迷,mamicode.com
首页 > 编程语言 > 详细

java从文件读取集合

时间:2016-10-20 21:58:38      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

public class ReadList {

    public static List<String> readList(String file) throws IOException {
        List<String> li = new ArrayList<String>();
        BufferedReader reader = new BufferedReader(new FileReader(file));
        String s = null;
        while (null != (s = reader.readLine())) {
            li.add(s);
        }
        reader.close();
        return li;
    }
}

 

java从文件读取集合

标签:

原文地址:http://www.cnblogs.com/windyWu/p/5982263.html

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