java按行读取文件
Posted 教程之父
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java按行读取文件相关的知识,希望对你有一定的参考价值。
/** * 按流读取文件 * @param path * @return * @throws FileNotFoundException */ public static BufferedReader openFile(final String path) throws FileNotFoundException { FileInputStream in = new FileInputStream(new File(path)); BufferedReader reader = new BufferedReader(new InputStreamReader(in)); return reader; }
一行一行的读取:
read.readLines();
注意:这里返回的不是数组,而是字符串。
以上是关于java按行读取文件的主要内容,如果未能解决你的问题,请参考以下文章