java: Cannot start javac process for abReins: it is configured to use JDK 6, but IDE supports compilation using JDK 7 and newer only. Consider associating the module with a supported JDK version. Note, that it is possible to keep the current Java language level to make produced *.class files compatible with Java 6 even when they are compiled by a newer compiler version.
时间: 2023-06-15 13:03:31 浏览: 5982
Java JDK 6
这个错误提示是因为你的项目使用了 JDK 6,但是你的 IDE(集成开发环境)只支持使用 JDK 7 及以上版本进行编译。你可以尝试将项目关联到支持的 JDK 版本上,或者保持当前的 Java 语言级别,使得编译后的 *.class 文件兼容 Java 6,即使它们是由新版本编译器编译的。
要解决这个问题,你可以按照以下步骤操作:
1. 确认你的 JDK 版本是否符合要求,如果不符合要求,可以下载并安装支持的版本。
2. 在 IDE 中打开项目设置,找到项目的编译选项,将编译器版本设置为支持的版本。
3. 如果你想保持当前的 Java 语言级别,并且让编译后的 *.class 文件兼容 Java 6,可以在项目设置中进行相应的设置。
希望这些信息能够帮助你解决问题。
阅读全文