找不到主类
这是我尝试运行程序时得到的结果..
我还得到:
java.lang.UnsupportedClassVersionError: Bad version number in .class file
This is what i get when i try to run my program ..
I am also getting:
java.lang.UnsupportedClassVersionError: Bad version number in .class file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在评论中您提到:
这意味着您正在尝试在旧版本上使用为较新版本的 Java 编译的类。
当您使用为 Java 6 编译的 Oracle JDBC 驱动程序 JAR 文件时,您可能尝试在 Java 5 或更早版本上运行此程序。
在较新版本的 Java 上运行它,或者确保您使用 Oracle JDBC 驱动程序的版本您正在使用的 Java 版本支持该功能。
In the comments you mention:
This means that you are trying to use a class that was compiled for a newer version of Java on an older version.
You are probably trying to run this on Java 5 or older while you are using an Oracle JDBC driver JAR file that was compiled for Java 6.
Run it on a newer version of Java, or make sure you use a version of the Oracle JDBC driver that is supported on the Java version that you are using.
IDE 正在寻找要执行的主类(即它正在尝试加载 java main)。尝试搜索设置并使用您的类名重置它或将类名更改为 main。
并且类名应该以大写字母开头
The IDE is looking for main class to execute (i.e. it is trying to load java main) . try searching for setting and reset it with your class name or change class name to main.
and class name should start from CapitalLetter