您的位置:首页 > 编程语言 > Java开发

java中getResourceAsStream的问题 - 缓存

2012-12-22 21:58 246 查看
运行状态下property文件已经被改动了,但是使用getResourceAsStream()方法读取的文件没发生变化,还是和最初启动服务器时的一致。在网上查了一下,有人说是getResourceAsStream()方法读取新文件后会被java虚拟机缓存,而再次调用getResourceAsStream()方法时会先查找java虚拟机中是否有此文件,如果有则直接返回,如果没有才会去根据传入的name获取文件

[java] view plaincopyprint?

final Properties prop = new Properties();

Property(String file){

try {

prop.load(this.getClass().getResourceAsStream(file));

} catch (FileNotFoundException e) {

e.printStackTrace(System.err);

} catch (IOException e) {

e.printStackTrace(System.err);

}

}

应该改为

[java] view plaincopyprint?

final Properties prop = new Properties();

Property(String file){

try {

prop.load(new FileInputStream(this.getClass().getResource(file).getFile()));

} catch (FileNotFoundException e) {

e.printStackTrace(System.err);

} catch (IOException e) {

e.printStackTrace(System.err);

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: