如何使用java.util.Scanner类逐行读取文件?

这是一种使用java.util.Scanner类逐行读取文件的紧凑方法。

package org.nhooo.example.util;

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class ScannerReadFile {
    public static void main(String[] args) {
        // 为data.txt文件创建File的实例。
        File file = new File("data.txt");
        try {
            // 创建一个新的Scanner对象,该对象将读取数据
            // 从传入的文件中检查。是否还有更多 
            // 要读取的行,我们通过调用 
            //Scanner.hasNextLine()方法。然后,我们阅读第一行 
            // 直到所有行都被读取为止。
            Scanner scanner = new Scanner(file);
            while (scanner.hasNextLine()) {
                String line = scanner.nextLine();
                System.out.println(line);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }
}