Scanner的构造方法中,可以传入一个read流文件,生成的Scanner对象有hasNext方法和next方法,hasNext多数用于循环遍历,next方法用于读取字符,返回一个字符串。

    1. Scanner sc = new Scanner(new FileReader("D:\\student.txt"));
    2. while(sc.hasNext()){
    3. list.add(sc.next());
    4. }