通过HttpServletRequest的request获取各种路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过HttpServletRequest的request获取各种路径相关的知识,希望对你有一定的参考价值。
System.out.println("getContextPath:"+req.getContextPath());
System.out.println("getServletPath:"+req.getServletPath());
System.out.println("getRequestURI:"+req.getRequestURI());
System.out.println("getRequestURL:"+req.getRequestURL());
System.out.println("getRealPath:"+req.getSession().getServletContext().getRealPath("image") );
输出结果为
getContextPath:/maven
getServletPath:/upload.do
getRequestURI:/maven/upload.do
getRequestURL:http://localhost:8080/maven/upload.do
getRealPath:D:\myecllipse\apache-tomcat-7.0.77-windows-x64\apache-tomcat-7.0.77\wtpwebapps\hcwproject\image
最后一个路径其实是工程在那个目录运行路径,不该路径默认会在工作空间
以上是关于通过HttpServletRequest的request获取各种路径的主要内容,如果未能解决你的问题,请参考以下文章
如何向我的 Java Servlet 的现有 HttpServletRequest 添加参数?