检索文件访问的本地 Tomcat 路径

发布于 2024-10-07 03:47:06 字数 183 浏览 2 评论 0原文

有没有办法检索 Tomcat 本地 GWT 目录以保存文件?

为了检索文件,

new File(getClass().getResource(nameOfAFile).getPath());

因此我将如何检索 tomcat 主机的路径以保存文件“hello.xml”?

Is there a way to retrieve the Tomcat local GWT directory in order to save a file?

In order to retrieve a file it's

new File(getClass().getResource(nameOfAFile).getPath());

Therefore how would I retrieve path of the tomcat host in order to save a file 'hello.xml'?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

牛↙奶布丁 2024-10-14 03:47:06

在tomcat中,可以使用 ServletContext.getRealPath() 获取 web 应用程序中文件的路径,然后您可以导航到“../”来查找 tomcat 目录。

In tomcat, you can use ServletContext.getRealPath() to get the path for a file in your webapp then you can do navigate to "../" to find tomcat dir.

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