微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/java/438036.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐