如何在Java中获取文件内容?
要获取txt文件的内容,我通常使用扫描仪并迭代每行以获取内容:
Scanner sc = new Scanner(new File("file.txt"));
while(sc.hasNextLine()){
String str = sc.nextLine();
}
Java API是否提供了一种通过一行代码获取内容的方法,例如:
String content = FileUtils.readFileToString(new File("file.txt"))