11

Under File -> Project Structure -> SDKs i have 1.7 jdk but i still get this error:

added.java: try-with-resources is not supported in -source 1.6 (use -source 7 or higher to enable try-with-resources)

I have restarted IDE but to no avail

4

5 回答 5

23

Newer JVMs allow you to compile your code using compiler versions of lower JVM versions. For example, JDK 1.7 will allow you to compile your code using the 1.5 compiler.

See the "Cross compilation section" here http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javac.html

What you need to do in Intellij, is to go to File -> Project Structure -> Project and select the "Project SDK" as 1.7 and the "Project Language Level" as 7.0

于 2013-06-14T04:41:21.107 回答
8

Had to click on the 'error bulb' icon (or Alt+Enter) and select option to enable load multi-catch, try with resources, diamond ... and then reload and restart IDE.

于 2013-06-14T03:50:57.480 回答
3

IntelliJ IDEA allows to set the language level on a project basis as well as on on module basis. If you have set the language level to Java 7 or higher on the project level, and are still getting this error message, right click on the module, select "Open module settings". Make sure the language level for the module is set to "Project default", or if for one reason, you want to set it specifically, it should be at least Java 7.

于 2015-10-15T21:41:08.757 回答
0

I had the same problem with IntelliJ 13. You have to set the language level, either for the entire project or individual modules, on the "General Settings for Project" dialog. See IntelliJ IDE gives error when using Try-Catch with Resources for the complete answer.

于 2015-10-05T17:09:13.037 回答
0

If the above answers didn't help, are you using Groovy? Apparently Groovy doesn't support Java's try-with-resources in the current version.

于 2021-09-07T21:16:21.100 回答