gpt4 book ai didi

java - 错误 :(185, 13) java : try-with-resources is not supported in -source 1. 5(使用 -source 7 或更高版本启用 try-with-resources)

转载 作者:搜寻专家 更新时间:2023-11-01 02:19:16 24 4
gpt4 key购买 nike

在 Java SDK 1.8 中编译的 intellij maven 但自动显示对 Java SDK 1.5 的更改并显示此错误

最佳答案

在你的pom.xml文件中应该有这个,它指定maven编译器为1.8

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

或者

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

关于java - 错误 :(185, 13) java : try-with-resources is not supported in -source 1. 5(使用 -source 7 或更高版本启用 try-with-resources),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53774229/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com