Try With Resources Not Supported at This Language Level

21,222

Solution 1

I have found that IntelliJ sometimes defaults modules to language levels that don't match the set project SDK. Try right clicking on the module in the project explorer and select module settings and then the language level tab. If that is set to Java 5 then update it to Java 8.

Solution 2

Make sure your try-with-resources is using the correct semantics. For instance, this:

try (new BufferedReader(request.getReader())) {

}

will produce that same error message.

Solution 3

Hey @Calicoder just try to make change your Java compiler version into 1.7 or 1.8 as mentioned below

enter image description here

Thanks hope this will help.

Share:
21,222
Calicoder
Author by

Calicoder

Just a guy with a B.S. in Computer Science.

Updated on July 05, 2022

Comments

  • Calicoder
    Calicoder almost 2 years

    I'm using IntelliJ IDEA Ultimate 2016.2.1, have set Project SDK to my 1.8 version, Project Language Level to 8, Module SDK to my 1.8 version, and JDK home path to /Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home.

    I have restarted the IDE.

    Still, I am getting ugly warnings about try-with-resources not supported at this language level. I have not used less than language level 8 in IntelliJ so this can't be due to something not refreshing. I am using a gradle build configuration - cleaned built and tried to run - says I'm running 1.5 but I can't figure out where 1.5 is mentioned. In build.gradle i'm using:

     apply plugin: 'java'
     apply plugin: 'application'
     sourceCompatibility = 1.8
    

    Should I file an IntelliJ bug or am I still missing something?

    EDIT:

    Running gradle in termianl outside of IntelliJ's system runs it fine. So the problem is IntelliJ related.

  • BingLi224
    BingLi224 over 4 years
    FYI: an example of solution can be: try ( BufferedReader br = new BuffererdReader ( request.getReader ( ) ) ) { }