我正在执行以下操作,
String str = "this is the new string";
URL resourceUrl = getClass().getResource("path_to_resource");
File file = new File(resourceUrl.toURI());
BufferedWriter writer = new BufferedWriter(new FileWriter(file));
writer.write(xml);
writer.close();
在上面的代码中,我试图写入我的一个 java 包中包含的资源文件。执行代码后,我的程序运行良好,但文件只是更新 web-INF 中的属性文件,而不是更新到存储它的包中。谁能帮我弄清楚我怎样才能做到这一点,或者我在这里做错了什么?非常感谢。