Java Scanner close() 方法
示例
在完成从文件读取操作后,使用 close()
方法
import java.io.File; // Import the File class
import java.io.FileNotFoundException; // Import this class to handle errors
import java.util.Scanner; // Import the Scanner class to read text files
public class ReadFile {
public static void main(String[] args) {
try {
File myObj = new File("filename.txt");
Scanner myReader = new Scanner(myObj);
while (myReader.hasNextLine()) {
String data = myReader.nextLine();
System.out.println(data);
}
myReader.close();
} catch (FileNotFoundException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
运行示例 »
定义和用法
The close()
方法关闭扫描器正在读取的文件或输入流。调用 close()
方法后,当前的 Scanner 对象将无法再使用。
注意:关闭使用 System.in
创建的扫描器将关闭 System.in
流本身,使其无法使用。最好仅对文件使用 close()
方法。
语法
public void close()
相关页面
Java 教程:创建和写入文件.