gpt4 book ai didi

java - 有没有办法在一个 Java8 流中读取两个或多个文件?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:52:39 25 4
gpt4 key购买 nike

我喜欢新的 Java8 StreamAPI,并且希望它不仅仅用于一个文件。像往常一样,我使用这段代码:

Stream<String> lines = Files.lines(Paths.get("/somepathtofile"));

但是如果可能的话,如何在一个流中读取两个文件呢?

最佳答案

没有任何额外的辅助函数或外部库,最简单的是:

Stream<String> lines1 = Files.lines(Paths.get("/somepathtofile"));
Stream<String> lines2 = Files.lines(Paths.get("/somepathtoanotherfile"));

Stream.concat(lines1, lines)
.filter(...)
.forEach(...);

如果 Files.lines 没有被声明为抛出检查异常,你可以这样做

Stream.of("/file1", "/file2")
.map(Paths::get)
.flatMap(Files::lines)....

但是,唉,我们不能那样做。有几种解决方法。一种是制作您自己的 Files.lines 版本,调用标准版本,捕获 IOException 并作为 UncheckedIOException 重新抛出。另一种方法是一种更通用的方法,可以从抛出已检查异常的方法中创建函数。它看起来像这样:

@FunctionalInterface
public interface ThrowingFunction<T,R> extends Function<T,R> {

@Override
public default R apply(T t) {
try {
return throwingApply(t);
} catch (Exception e) {
throw new RuntimeException(e);
}
}

public static<T,R> Function<T,R> wrap(ThrowingFunction<T,R> f) {
return f;
}

R throwingApply(T t) throws Exception;
}

然后

Stream.of("/somefile", "/someotherfile", "/yetanotherfile")
.map(Paths::get)
.flatMap(ThrowingFunction.wrap(Files::lines))
.....

有几个库经历了为每个功能接口(interface)编写类似上述内容的麻烦。

关于java - 有没有办法在一个 Java8 流中读取两个或多个文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29691209/

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