package IO1; import java.io.File;; public class IO1 { public static void main(String[] args){ File file=new File("F:\\自学"); System.out.println(file.exists()); } } 运行为什么提示错误说找不到main方法

来源:2-1 File 类常用 API 介绍

沙滩贝壳

2017-04-21 19:45

package IO1; import java.io.File;; public class IO1 { public static void main(String[] args){ File file=new File("F:\\自学"); System.out.println(file.exists()); } } 运行为什么提示错误说找不到main方法

写回答 关注

3回答

  • 沙滩贝壳
    2017-04-21 20:12:16

    可以运行了,

  • 沙滩贝壳
    2017-04-21 20:07:16

    运行了,file的路径不管写什么要么是没有主函数要么就是没有输出结果

  • mohazhe
    2017-04-21 19:48:37

    没有运行当前模块吧

文件传输基础——Java IO流

为您介绍IO流的使用,以及对象的序列化和反序列化的内容

133754 学习 · 1030 问题

查看课程

相似问题