如何在最短的行数中将N行的文件加载到字符串的ArrayList中。
这就是我所拥有的,任何人都有关于如何减少行数和对象的任何建议?
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
public class FileLoad {
public static void main(String[] args) throws IOException, FileNotFoundException {
List<String> hs = new ArrayList<String>();
BufferedReader br = new BufferedReader(new FileReader(args[0]));
String line;
while ((line = br.readLine()) != null) {
hs.add(line);
}
}
}
答案 0 :(得分:5)
在Java 7+中,有一行:
List<String> lines = Files.readAllLines(Paths.get(args[0]), Charset.forName("UTF-8"));
答案 1 :(得分:1)
您可以使用 Apache Commons IO Jar
中的FileUtils.readLines(File f)
方法
List<String> lines = FileUtils.readLines(new File("readme.txt"));