作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果发生任何错误,我需要一些代码来触发。基本上我需要一个 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/
我是一名优秀的程序员,十分优秀!