java从文件读取集合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java从文件读取集合相关的知识,希望对你有一定的参考价值。

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从文件读取集合的主要内容,如果未能解决你的问题,请参考以下文章

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

从 Zip 文件中的文件中读取内容

如何用java导入Excel数据到数据库?

java问题 如图,集合序列化的报错要怎么改呢?写入文件和读取对象的代码都在图里了,哪写错了,求大神

从 BigQuery 读取数据并将其写入云存储上的 avro 文件格式

从JVM的角度看JAVA代码--代码优化