java – 在Netbeans中使用try-with-resources

前端之家收集整理的这篇文章主要介绍了java – 在Netbeans中使用try-with-resources前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在Java servlet类中有一个try-catch语句. Netbeans显示错误

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

我怎样才能摆脱这个错误

最佳答案
看起来您从NetBeans论坛找到了我的帖子,我在其中发布了解决方案:

I got the error to go away.

Right click on project > Properties > Sources > Source/Binary Format:
JDK 7 > OK.

资源:

>错误:在-source 6中不支持try-with-resources(使用-source 7或更高版本来启用try-with-resources)“:

http://forums.netbeans.org/ntopic42154.html

原文链接:https://www.f2er.com/java/438036.html

猜你在找的Java相关文章