我正在使用getResourceAsStream()方法读取jar文件中的配置文件。以下是我的代码:
Properties properties = new Properties();
properties.load(TokenValidator.class.getClassLoader().getResourceAsStream("config.properties"));
我需要关闭此信息流吗?这样就完成了吗?