import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
/**
* 实现一个对文件操作
* @author caowh
* E-mail: 458584881@qq.com
* @date 创建时间:2017年5月3日 下午11:26:23
*/
public class ScannerFileDemo {
public static void main(String[] args) throws FileNotFoundException {
//创建一个输入对象实现对文件的操作
Scanner scanner = new Scanner(new File("d:"+File.separator+"test.txt"));
System.out.println("test.txt文件内容如下:");
while(scanner.hasNextLine()){
System.out.println(scanner.nextLine());
}
}
}