gpt4 book ai didi

java - 如何使用 java8 lambda 表达式抛出自定义检查异常?

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

<分区>

我有下面的代码。

private static void readStreamWithjava8() {

Stream<String> lines = null;

try {
lines = Files.lines(Paths.get("b.txt"), StandardCharsets.UTF_8);
lines.forEachOrdered(line -> process(line));
} catch (IOException e) {
e.printStackTrace();
} finally {
if (lines != null) {
lines.close();
}
}
}

private static void process(String line) throws MyException {
// Some process here throws the MyException
}

我的 process(String line) 方法抛出已检查的异常,我从 lambda 中调用该方法。此时需要从 readStreamWithjava8() 方法中抛出 MyException 而不是抛出 RuntimeException

如何使用 java8 执行此操作?

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