Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 jar,其中包含MainClass具有静态启动和停止方法的类。当我使用 JDK6 和 Prunsrv 时,我的服务成功启动和停止。当我切换到 JDK 时,我在启动服务时收到此错误:
MainClass
java.lang.UnsupportedClassVersionError:org/serv/MainClass:不支持的major.minor版本52.0
我该如何解决这个问题?
我以前遇到过这种情况。
这通常是因为 Java 类是为一个 Java 版本(即 JSE 8)编译的,但它们是与另一个版本(即 JSE 6)一起运行的。
检查您的路径并确保适当版本的 JVM 正在运行代码。
也可以看看: