如何获取任何应用程序上下文根的文件系统路径

发布于 2024-12-05 07:34:19 字数 320 浏览 1 评论 0 原文

我正在开发 Web 应用程序。我在 jsp request.getContextPath() 上调用,但奇怪的是我得到了地址 /streetshop

然后我将一些路径附加为 request.getContextPath() + "abc" 并创建文件夹。

然后它在 D:// 中创建文件夹,而不是我的 webapplication 文件夹。

请告诉我,我想上传一张图像并将其放入我的网络应用程序 root/images/images.gif 中。

I am working on web application.I invoke on my jsp request.getContextPath(), but strangely I got address /streetshop.

Then I am appending some path as request.getContextPath() + "abc" and create folder.

Then its creating folder in D:// instead of my webapplication folder.

Please, tell me, I want to upload an image in put it in my web-application root/images/images.gif.

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

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

发布评论

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

评论(1

美煞众生 2024-12-12 07:34:19

你把这里的事情搞混了。 HttpServletRequest.getContextPath() 返回您的 Web 应用程序根路径。在您的示例中,这是 /streetshop,因此您的 URL 可能类似于 www.myapp.com/streetshop。如果要访问内部文件系统路径,则必须使用 ServletContext 获取它/ServletContext.html#getRealPath%28java.lang.String%29" rel="noreferrer">request.getServletContext().getRealPath("/")。这应该返回 WAR 文件的 WebContent 文件夹的位置。

请记住,如果您在运行时修改此路径的内容,则在重新部署应用程序时将丢失所有内容。

You mix things up here. HttpServletRequest.getContextPath() returns your web application root path. In your example this is /streetshop, so your URL may look similar to www.myapp.com/streetshop. If you want to access the internal file system path, you must obtain it from the ServletContext using request.getServletContext().getRealPath("/"). This should return the location of your WAR files' WebContent folder.

Keep in mind that if you modify contents of this path during runtime, you're going to loose everything when redeploying your application.

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