使用getResourceAsStream()时关闭流

时间:2018-11-20 16:59:51

标签: java stream

我正在使用getResourceAsStream()方法读取jar文件中的配置文件。以下是我的代码:

 Properties properties = new Properties();   
 properties.load(TokenValidator.class.getClassLoader().getResourceAsStream("config.properties"));                                

我需要关闭此信息流吗?这样就完成了吗?

0 个答案:

没有答案