Sonar-Use try-with-resources or close this quot;Streamquot; in a quot;finallyquot; clause java8 stream(声纳-使用Try-with-Resources或在quot;Finallyquot;子句java8流中关闭此流(q;Streamquot;))
问题描述
Sonar Qube给我以下错误
使用TRY-WITH-RESOURCES或在"Finally"子句中关闭此"Stream"
List<Path> paths = find(Paths.get(nasProps.getUpstreamOutputDirectory() + File.separator + inputSource.concat("_").concat(contentGroup).concat("_").concat(parentId)),
MAX_VALUE, (filePath, fileAttr) -> fileAttr.isRegularFile() && filePath.getFileName().toString().matches(".*\." + extTxt))
.collect(toList());
paths.stream().forEach(path -> textFileQueue.add(path));
我对java8了解不多。您能帮我关闭这条流吗?
推荐答案
假设find
这里是Files.find
,那么您应该使用的是
final Path startPath = Paths.get(nasProps.getUpstreamOutputDirectory() +
File.separator +
inputSource.concat("_").concat(contentGroup).concat("_").concat(parentId));
BiPredicate<Path, BasicFileAttributes> matcher = (filePath, fileAttr) ->
fileAttr.isRegularFile() && filePath.getFileName().toString().matches(".*\." + extTxt);
try (Stream<Path> pathStream = Files.find(startPath, Integer.MAX_VALUE, matcher)) {
pathStream.forEach(path -> textFileQueue.add(path));
} catch (IOException e) {
e.printStackTrace(); // handle or add to method calling this block
}
链接文档的API备注中也提到了sonarqube在这里出现警告的原因:
此方法必须在try-with-resources语句中使用,或者 类似的控制结构,以确保流的打开目录 在流的操作完成后立即关闭。
这篇关于声纳-使用Try-with-Resources或在";Finally";子句java8流中关闭此流(&q;Stream";)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:声纳-使用Try-with-Resources或在";Finally";子句java8流中关闭此流(&q;Stream";)
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01