学习PrintWriter,Scanner读写文件(9.7)
一、用PrintWriter写入文件
主要用PrintWriter的print(),或者println()方法。
File file = new File("文件路径");
PrintWriter out = new PrintWriter(file,"GBK");
out.println("文件内容");
out.close();
二、用Scanner读数据
常用的是从控制台读取数据
Scanner input = new Scanner(System.in);
从文件中读取数据
File file = new File("文件路径");
Scanner input = new Scanner(file,“GBK”);//要指定文件的编码格式,否则可能读不了数据
while(input.hasNext()){
String line = input.next();
System.out.println(line);
}
在练习Scanner读取文件时,遇到Exception in thread "main" java.util.NoSuchElementException,原因就是没指定读取文件的编码格式(文件格式是ANSI,默认IDE是UTF-8)
Scanner中的next()方法读取一个由分隔符(默认空格)分割的字符串
nextLine()读取一个以行分隔符结束的行。
注意:行分隔符是由系统定义的,在Windows平台是\r\n,而在UNIX平台上是\n。
为了得到特定平台上的行分隔符,使用
String line = System.getProperty("file.separator");