IntelliJ IDEA编译错误:Error:java: Compilation failed: internal java compiler error

在使用 IntelliJ IDEA 进行 Java 开发的时候偶尔会报如下错误:

IntelliJ IDEA 编译错误:
Error:java: Compilation failed: internal java compiler error

该问题的解决方式如下:

确认工程的JDK

File 》Project Structure 》Project Settings 》Project 查看工程的 Project SDK、Project language level,我的设置为 Project SDK=1.8,Project language level=8
IntelliJ IDEA编译错误:Error:java: Compilation failed: internal java compiler error_第1张图片

修改编译器设置

File 》Setting 》Build, Execution, Deployment 》 Compiler 》Java Compiler 修改 Target bytecode version 为 1.8,再次编译工程,则错误消失。
IntelliJ IDEA编译错误:Error:java: Compilation failed: internal java compiler error_第2张图片

你可能感兴趣的:(Java编程)