我想在项目的webapp文件夹中动态添加新的.xhtml
文件。
它只适用于我给出完整路径,
FileWriter fw = new FileWriter("D:/projects/UIBindingExample/src/main/webapp/pagefour.xhtml");
fw.write("<html>...some code....</html>");
fw.close();
而不是这个我希望使用文件的相对路径,如
来使其工作src/main/webapp/pagefour.xhtml
我试过这个。但它没有用。!!! 我该怎么办? 谢谢你。
答案 0 :(得分:0)
src/main/webapp/pagefour.xhtml
是您的webapp上下文的相对路径,因此,如果您运行此代码,最终可能会将文件内容保存到D:/projects/UIBindingExample/target/your-artifact-name/WEB-INF/main/webapp/pagefour.xhtml
其中your-artifact-name
是生成的WAR文件的名称。
希望有所帮助。