共计 530 个字符,预计需要花费 2 分钟才能阅读完成。
要读取一个 txt 文件中的内容,可以使用 Java 中的 File 类和 Scanner 类。下面是一个简单的示例代码:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadFile {public static void main(String[] args) {try {File file = new File("file.txt");
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();} catch (FileNotFoundException e) {System.err.println(" 文件未找到 ");
}
}
}
在上面的代码中,首先创建一个 File 对象来表示要读取的 txt 文件,然后创建一个 Scanner 对象来读取文件内容。使用 while 循环来逐行读取文件内容,并打印出来。最后别忘了关闭 Scanner 对象。
丸趣 TV 网 – 提供最优质的资源集合!
正文完