try-with-resources替换try-catch的例子
时间: 2023-03-15 15:11:33 浏览: 119
Java异常处理新特性
示例: try (InputStream input = new FileInputStream(fileName)) {
// use the input
} catch (IOException e) {
e.printStackTrace();
}可以替换为:try (InputStream input = new FileInputStream(fileName)) {
// 使用输入
} catch (IOException e) {
e.printStackTrace();
} finally {
input.close();
}
阅读全文