在webapp文件夹中动态添加.xhtml文件

发布于 2024-12-27 19:22:27 字数 414 浏览 3 评论 0原文

我想在项目的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你再特殊 2025-01-03 19:22:27

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 to D:/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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文