Java 实例 - 读取文件内容

以下实例演示了使用 readLine() 方法来读取文件 test.log 内容,其中 test.log 文件内容为:

  1. 百度网址
  2. www.baidu.com

java 代码如下:

Main.java 文件

  1. import java.io.*;
  2. public class Main {
  3. public static void main(String[] args) {
  4. try {
  5. BufferedReader in = new BufferedReader(new FileReader("test.log"));
  6. String str;
  7. while ((str = in.readLine()) != null) {
  8. System.out.println(str);
  9. }
  10. System.out.println(str);
  11. } catch (IOException e) {
  12. }
  13. }
  14. }

以上代码运行输出结果为:

  1. 百度网址
  2. www.baidu.com
  3. null