Java 读取文件

读取文件

在上一章中,您学习了如何创建和写入文件。

在下面的实例中,我们使用 Scanner 类来读取在上一章中创建的文本文件的内容:

实例
  1. import java.io.File; // Import the File class
  2. import java.io.FileNotFoundException; // Import this class to handle errors
  3. import java.util.Scanner; // Import the Scanner class to read text files
  4. public class ReadFile {
  5. public static void main(String[] args) {
  6. try {
  7. File myObj = new File("filename.txt");
  8. Scanner myReader = new Scanner(myObj);
  9. while (myReader.hasNextLine()) {
  10. String data = myReader.nextLine();
  11. System.out.println(data);
  12. }
  13. myReader.close();
  14. } catch (FileNotFoundException e) {
  15. System.out.println("An error occurred.");
  16. e.printStackTrace();
  17. }
  18. }
  19. }

输出应为:

Files in Java might be tricky, but it is fun enough!

获取文件信息

要获取有关文件的更多信息,请使用 File 方法:

实例
  1. import java.io.File; // Import the File class
  2. public class GetFileInfo { public static void main(String[] args) {
  3. File myObj = new File("filename.txt");
  4. if (myObj.exists()) {
  5. System.out.println("File name: " + myObj.getName());
  6. System.out.println("Absolute path: " + myObj.getAbsolutePath());
  7. System.out.println("Writeable: " + myObj.canWrite());
  8. System.out.println("Readable " + myObj.canRead());
  9. System.out.println("File size in bytes " + myObj.length());
  10. } else {
  11. System.out.println("The file does not exist.");
  12. }
  13. }
  14. }

输出应为:

File name: filename.txt
Absolute path: C:\Users\MyName\filename.txt
Writeable: true
Readable: true
File size in bytes: 0
注意:Java API 中有许多可用类可用于在 Java 中读取和写入文件:FileReaderBufferedReaderfilesScannerFileInputStreamFileWriterBufferedWriterFileOutputStream 等。使用哪个类取决于您使用的 Java 版本,以及是否需要读取字节或字符,以及文件/行的大小等。

提示: 要删除文件,请学习本站 Java 删除文件 章节。

分类导航