我正在尝试从文件夹路径作为参数传入的文件夹中读取图像,我正在尝试使用流 API 将它们添加到数组列表中,但我不知道我应该在 forEach 中使用什么变量() 添加到我的数组列表
public void downsampling(String inputPath, String outputPath) {
ArrayList<BufferedImage> inputSequence = new ArrayList<BufferedImage>();
try (Stream<Path> paths = Files.walk(Paths.get(inputPath))) {
paths
.forEach(inputSequence.add(XXX));
} catch (IOException e) {
e.printStackTrace();
}
}
XXX 应该换成什么?非常感谢
有只小跳蛙
相关分类