Request对象

Posted chichung

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Request对象相关的知识,希望对你有一定的参考价值。

1.Request对象

Request对象是来获取请求消息的,是由服务器(Tomcat)创建的。

Request对象继承体系结构:

    ServletRequest        --    接口
        |    继承
    HttpServletRequest    -- 接口
        |    实现
    org.apache.catalina.connector.RequestFacade     -- 类(tomcat源码实现)

 

2.Request对象的方法

 

  2.1 获取请求行数据(例如:GET /demo/servletdemo1?name=zhangsan HTTP/1.1)

(1)获取请求方式:GET

         String getMethod()

(2)获取虚拟目录:/demo

         String getContextPath()

(3)获取Servlet路径:/servletdemo1

         String getServletPath()

(4)获取get方式请求参数:name=zhangsan

         String getQueryString()

(5)获取请求URI(统一资源标识符):/demo/servletdemo1

         String getRequestURI()

(6)获取请求URL(统一资源定位符):http://localhost:8080/demo/servletdemo1

   StringBuffer getRequestURL()

(7)获取协议及版本:HTTP/1.1

   String getProtocol()

(8)获取客户机的IP地址

  String getRemoteAddr()

 

  2.2 获取请求头数据

(1)通过请求头的名称获取请求头的值

  String getHeader(String name)

(2)获取所有的请求头名称

  Enumeration<String> getHeaderNames()

 

  2.3 获取请求体数据

1.获取流对象

BufferedReader getReader():获取字符输入流,只能操作字符数据
ServletInputStream getInputStream():获取字节输入流,可以操作所有类型数据

2.在流对象取数据

 

3.其他功能

获取请求参数通用方式:不论get还是post请求方式都可以使用下列方法来获取请求参数

(1)String getParameter(String name):根据参数名称获取参数值    username=zs&password=123

(2)String[] getParameterValues(String name):根据参数名称获取参数值的数组  hobby=xx&hobby=game

(3)Enumeration<String> getParameterNames():获取所有请求的参数名称

(4)Map<String,String[]> getParameterMap():获取所有参数的map集合

注意:

中文乱码问题:
                * get方式:tomcat 8 已经将get方式乱码问题解决了
                * post方式:会乱码
                    * 解决:在获取参数前,设置request的编码request.setCharacterEncoding("utf-8");









以上是关于Request对象的主要内容,如果未能解决你的问题,请参考以下文章

NodeJS - request对象

Java 之 Request 对象

flask的Request对象

response对象和request对象详解

jsp内置对象*request

Request