gpt4 book ai didi

java - 为什么我需要关闭流

转载 作者:行者123 更新时间:2023-11-30 03:04:07 25 4
gpt4 key购买 nike

为什么我需要关闭 Streams(FileInputStream 等..)?如果我没有关闭流,Java 是否不会智能地使用 GC?

public void getLongStrings() throws IOException {
InputStream i1 = null;
InputStream i2 = null;
InputStreamReader isr1 = null;
InputStreamReader isr2 = null;
try {
i1 = aBook.getInputStream();
i2 = aNovel.getInputStream();
isr1 = new InputStreamReader(i1);
isr2 = new InputStreamReader(i2);
foo = FileCopyUtils.copyToString(isr1);
bar = FileCopyUtils.copyToString(isr2);
}
catch (IOException ioe) {
//do something appropriate here
} finally {
if (i1 != null) i1.close();
if (i2 != null) i2.close();
if (isr1 != null) isr1.close();
if (isr2 != null) isr2.close();
}
}

我需要关闭我使用的所有流吗?

最佳答案

垃圾收集器旨在收集未使用的对象。流通常链接到许多资源(文件描述符、套接字等),这些资源在您的计算机中更为重要。当然,它们很可能在程序退出时被释放,但它们应该尽可能少地保持打开状态

关于java - 为什么我需要关闭流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35220440/

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