我正在Web应用程序上工作。我在jsp上调用request.getContextPath(),但奇怪的是我得到了地址/streetshop。
request.getContextPath()
/streetshop
然后我附加一些路径request.getContextPath() + "abc"并创建文件夹。
request.getContextPath() + "abc"
然后在它的创建文件夹D://而不是我的webapplication文件夹中。
D://
请告诉我,我想上传一张放入我的图片中web-application root/images/images.gif。
web-application root/images/images.gif
您在这里混在一起。HttpServletRequest.getContextPath()返回您的Web应用程序的根路径。在您的示例中,这是/streetshop,因此您的URL可能类似于www.myapp.com/streetshop。如果要访问内部文件系统路径,则必须从ServletContextusing中获取它request.getServletContext().getRealPath("/")。这应该返回WAR文件文件WebContent夹的位置。
HttpServletRequest.getContextPath()
www.myapp.com/streetshop
ServletContext
request.getServletContext().getRealPath("/")
WebContent
请记住,如果您在运行时修改此路径的内容,则在重新部署应用程序时将失去所有内容。