Error occurred during initialization of VM java.lang.UnsupportedClassVersionError: com/intellij/util/lang/PathClassLoader has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 52.0
时间: 2023-06-11 09:09:02 浏览: 393
java.lang.NoClassDefFoundError错误解决办法
5星 · 资源好评率100%
这个错误提示的意思是你的 Java Runtime 环境版本过低,无法识别使用了较新版本的 JDK 编译的类文件。你需要使用更高版本的 Java Runtime 环境来运行这个程序。
你可以尝试更新你的 Java Runtime 环境,或者使用更高版本的 JDK 编译该程序。同时,你也可以检查你的开发环境和运行环境是否匹配,确保它们都使用了相同的 JDK 版本。
阅读全文