找不到主类

发布于 2024-10-18 04:18:00 字数 207 浏览 2 评论 0原文

在此处输入图像描述

这是我尝试运行程序时得到的结果..

我还得到:

java.lang.UnsupportedClassVersionError: Bad version number in .class file 

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

池予 2024-10-25 04:18:00

在评论中您提到:

java.lang.UnsupportedClassVersionError:.class 文件中的版本号错误

这意味着您正在尝试在旧版本上使用为较新版本的 Java 编译的类。

当您使用为 Java 6 编译的 Oracle JDBC 驱动程序 JAR 文件时,您可能尝试在 Java 5 或更早版本上运行此程序。

在较新版本的 Java 上运行它,或者确保您使用 Oracle JDBC 驱动程序的版本您正在使用的 Java 版本支持该功能。

In the comments you mention:

java.lang.UnsupportedClassVersionError: Bad version number in .class file

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.

淤浪 2024-10-25 04:18:00

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文