在webapp文件夹中动态添加.xhtml文件
我想在项目的 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
我尝试了这个。但它不起作用。!!! 我应该怎么办? 感谢副词。
I want to dynamically add new .xhtml
files in the webapp folder of my project.
It only works when i give the full path like,
FileWriter fw = new FileWriter("D:/projects/UIBindingExample/src/main/webapp/pagefour.xhtml");
fw.write("<html>...some code....</html>");
fw.close();
instead of this i want to get it work using the relative path of the file like,
src/main/webapp/pagefour.xhtml
i tried this.but its not working .!!!
what should i do?
Thanks in adv.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
src/main/webapp/pagefour.xhtml
是 web 应用程序上下文的相对路径,因此如果您运行此代码,您最终可能会将文件内容保存到D:/projects /UIBindingExample/target/your-artifact-name/WEB-INF/main/webapp/pagefour.xhtml
其中
your-artifact-name
是生成的 WAR 文件的名称。希望有帮助。
src/main/webapp/pagefour.xhtml
is a relative path to the context of your webapp, so probably if you run this code you would end up in saving file contents toD:/projects/UIBindingExample/target/your-artifact-name/WEB-INF/main/webapp/pagefour.xhtml
where
your-artifact-name
is name of generated WAR file.Hope that helps.