如何用 Java 打开一个纯文本文件?


你可以使用 File 类访问纯文本。

示例

现场演示

import java.io.File;

public class ReadFile {
   public static void main(String[] args) {
      File f = null;
      String str = "data.txt";

      try {
         f = new File(str);
         boolean bool = f.canExecute();
         String a = f.getAbsolutePath();
         System.out.print(a);
         System.out.println(" is executable: "+ bool);
      } catch (Exception e) {
         e.printStackTrace();
      }
   }
}

输出

 C:\Users\data is executable: true

更新日期:2020-02-20

273 次浏览

开启你的 职业生涯

完成本课程以获得认证

开始学习
广告