Request获取请求路径方法介绍

Request对象通过以下方法来获取请求路径。

(1)String getServerName():获取服务器名:localhost

(2)String getServerPort():获取服务器端口号:8080

(3)String getContextPath():获取项目名:Test

(4)String getServletPath():获取Servlet路径:/login

(5)String getQueryString():获取参数部门,即问号后面的部分:username=zhangsan

(6)String getRequestURL():获取请求URL

时间: 2024-12-10 18:48:39

Request获取请求路径方法介绍的相关文章

从request获取各种路径总结 request.getRealPath("url")

转载:http://blog.csdn.net/piaoxuan1987/article/details/8541839 equest.getRealPath() 这个方法已经不推荐使用了,代替方法是: request.getSession().getServletContext().getRealPath() 从Request对象中可以获取各种路径信息,以下例子: 假设请求的页面是index.jsp,项目是WebDemo,则在index.jsp中获取有关request对象的各种路径信息如下 S

django request 获取请求的URL

1. get_full_path() 获取的url路径包含参数 2.path_info 获取的路径不包含参数 注意:获取的路径都不包含协议 IP 和端口 3.补充 sesssion http://127.0.0.1:8000/admin/login/?next=/admin/ 1.登录admin /admin/ 使用 path_info 获取 /admin/ django request 获取请求的URL request.get_host() 获取请求地址 request.path 获取请求的p

request获取请求头和请求数据

1 package cn.itcast.request; 2 3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.io.PrintWriter; 6 import java.lang.reflect.InvocationTargetException; 7 import java.util.Enumeration; 8 import java.util.Map; 9 10 import javax.s

request获取各种路径(转)

equest.getRealPath() 这个方法已经不推荐使用了,代替方法是: request.getSession().getServletContext().getRealPath() 在servlet里用this.getServletContect().getRealPath() 在struts里用this.getServlet().getServletContext().getRealPath() 在Action里用ServletActionContext.getRequest().g

Request.url请求路径的一些属性

Request.url请求路径的一些属性1,Request.UrlReferrer.AbsolutePath=获取URL的绝对路径例:"/Manager/Module/OfficialManage/Issuedadocument/Issuedadocument_WorkNew.aspx" 2,Request.UrlReferrer.AbsoluteUri=获取绝对URL例:"http://localhost:2855/Manager/Module/OfficialManage

request 获取请求参数

/** * 根据request获取请求的用户参数 * @return * @return */ protected <T> T getParamConvertEntity(Class cls) { Object obj = null; try { obj = cls.newInstance(); Map paramMap = new HashMap(); paramMap.putAll(request.getParameterMap()); //设置用户ID paramMap.put(&quo

request 获取各种路径

从request获取各种路径总结 request.getRealPath("url"); // 虚拟目录映射为实际目录 request.getRealPath("./");    // 网页所在的目录 request.getRealPath("../"); // 网页所在目录的上一层目录 request.getContextPath();    // 应用的web目录的名称 如http://localhost:7001/bookStore/ /b

request获取各种路径

转自:http://zjutsoft.iteye.com/blog/1084260 从request获取各种路径总结 request.getRealPath("url"); // 虚拟目录映射为实际目录 request.getRealPath("./");    // 网页所在的目录 request.getRealPath("../"); // 网页所在目录的上一层目录 request.getContextPath();    // 应用的web

servlet 各种请求路径方法

/* 1.具体请求路径: 如果浏览器请求的[资源文件地址]与当前Servlet中<url-pattern>的内容[完全一致],Tomcat才会带调用当前Servlet 例子 OneServlet <url-pattern>/one.do</url-pattern> http://localhost:8080/myWeb/one.do OneServelt会被调用 http://localhost:8080/myWeb/abc/one.do OneServelt不会被调用