问题描述
我有2个文件SampleFile.java和URL.properties,它们都在同一包“ PACKAGE”中 我想用URL.properties中的“ KEY”覆盖更新的“ VALUE” 下面是我的代码,写入了更新的VALUE,但是在\ project \ WEB-INF \ classes \ PACKAGE
的类文件夹中创建了一个新文件“ URL.properties”Properties prop=new Properties();
URL path = SampleJava.class.getResource("URL.properties");`enter code here`
File f= new File(path.getFile());
try {
OutputStream out = new FileOutputStream(f);
prop.setProperty(KEY,UPDATED_VALUE);
prop.store(out,null);
out.close();
} catch (FileNotFoundException e) {
e.printstacktrace();
}
如果我读取URL.properties,将无法获得正确的数据,因为我正在从以下位置访问它 \ project \ src \ main \ java \ PACKAGE
该如何解决?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)