gpt4 book ai didi

java - 如何在 Java 中为错误情况实现 `finally`

转载 作者:行者123 更新时间:2023-11-29 09:42:29 25 4
gpt4 key购买 nike

如果发生任何错误,我需要一些代码来触发。基本上我需要一个 finally block ,它只在出现异常时执行。我会这样实现它:

HttpURLConnection post(URL url, byte[] body) throws IOException {
HttpURLConnection connection = url.openConnection();
try {
OutputStream out = connection.getOutputStream();
try {
out.write(body);
} finally {
out.close();
}
return connection;
} catch (Throwable t) {
connection.disconnect();
throw t;
}
}

看起来不错——除了无法编译:我的函数不能抛出 Throwable

我可以重写:

    } catch (RuntimeException e) {
connection.disconnect();
throw e;
} catch (IOException e) {
connection.disconnect();
throw e;
}

但即便如此,我 a) 遗漏了所有错误并且 b) 每当我更改我的实现以抛出不同类型的异常时都必须修复此代码。

是否可以通用地处理这个问题?

最佳答案

您可以使用 finally block ,并添加一个标志来指示成功。

bool success = false;
try {
//your code
success = true;
return retVal;
} finally {
if (!success) {
//clean up
}
}

关于java - 如何在 Java 中为错误情况实现 `finally`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4403949/

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