下面这个程序是想构造从文件读取数据的Scanner,但是怎样读出来呀,我不会接下来的代码,请帮我完成。
import java.util.*;
public class Test
{
public static void main(String[] args)
{
Scanner in = new Scanner("E:\\java练习程序\\abc.txt");
}
}
文件abc.txt中是有内容的,怎样读出来呢?
------解决方案--------------------
文件内容:
hrinfo1.txt
老赵 28 feb-01 true
小竹 22 dec-03 false
阿波 21 dec-03 false
凯子 25 dec-03 true
FileReader fileReader =new FileReader("hrinfo1.txt");
// create a scanner from the data file
Scanner scanner = new Scanner(fileReader);
// repeat while there is a next item to be scanned
while (scanner.hasNext()) {
// retrieve each data element
String name = scanner.next();
int age = scanner.nextInt();
String time = scanner.next();
boolean bool = scanner.nextBoolean();
System.out.println(name+" "+age+" "+time+" "+bool);
}
scanner.close(); // also closes the FileReader
输出:
老赵 28 feb-01 true
小竹 22 dec-03 false
阿波 21 dec-03 false
凯子 25 dec-03 true
------解决方案--------------------
这里只是关键的代码,你需要放到try-catch里进行异常处理
------解决方案--------------------
放到 工具环境中。