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不太了解。你能帮我关闭信息流吗?
答案 0 :(得分:0)
假设这里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语句中使用此方法,或者 类似的控制结构,以确保流的打开目录 流的操作完成后,将立即关闭。