如何获取任何应用程序上下文根的文件系统路径
我正在开发 Web 应用程序。我在 jsp request.getContextPath()
上调用,但奇怪的是我得到了地址 /streetshop
。
然后我将一些路径附加为 request.getContextPath() + "abc"
并创建文件夹。
然后它在 D://
中创建文件夹,而不是我的 webapplication 文件夹。
请告诉我,我想上传一张图像并将其放入我的网络应用程序 root/images/images.gif
中。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你把这里的事情搞混了。
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 towww.myapp.com/streetshop
. If you want to access the internal file system path, you must obtain it from theServletContext
usingrequest.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.