IT程序员开发必备-各类资源下载清单,史上最全IT资源,个人收藏总结!

1. 获得客户机信息
    getRequestURL方法返回客户端发出请求时的完整URL。
    getRequestURI方法返回请求行中的资源名部分。
    getQueryString 方法返回请求行中的参数部分。
    getRemoteAddr方法返回发出请求的客户机的IP地址 
    getRemoteHost方法返回发出请求的客户机的完整主机名
    getRemotePort方法返回客户机所使用的网络端口号
    getLocalAddr方法返回WEB服务器的IP地址。
    getLocalName方法返回WEB服务器的主机名 
    getMethod得到客户机请求方式
 2.获得客户机请求头

getHeader(string name)方法 
    getHeaders(String name)方法 
    getHeaderNames方法

3. 获得客户机请求参数(客户端提交的数据)
    getParameter(name)方法
    getParameterValues(String name)方法
    getParameterNames方法 
    getParameterMap方法

例子程序:

  1. public void doGet(HttpServletRequest request, HttpServletResponse response)
  2. throws ServletException, IOException {
  3. System.out.println("getRequestURL: "+request.getRequestURL());
  4. System.out.println("getRequestURI: "+request.getRequestURI());
  5. System.out.println("getQueryString: "+request.getQueryString());
  6. System.out.println("getRemoteAddr: "+request.getRemoteAddr());
  7. System.out.println("getRemoteHost: "+request.getRemoteHost());
  8. System.out.println("getRemotePort: "+request.getRemotePort());
  9. System.out.println("getRemoteUser: "+request.getRemoteUser());
  10. System.out.println("getLocalAddr: "+request.getLocalAddr());
  11. System.out.println("getLocalName: "+request.getLocalName());
  12. System.out.println("getLocalPort: "+request.getLocalPort());
  13. System.out.println("getMethod: "+request.getMethod());
  14. System.out.println("-------request.getParamterMap()-------");
  15. //得到请求的参数Map,注意map的value是String数组类型
  16. Map map = request.getParameterMap();
  17. Set<String> keySet = map.keySet();
  18. for (String key : keySet) {
  19. String[] values = (String[]) map.get(key);
  20. for (String value : values) {
  21. System.out.println(key+"="+value);
  22. }
  23. }
  24. System.out.println("--------request.getHeader()--------");
  25. //得到请求头的name集合
  26. Enumeration<String> em = request.getHeaderNames();
  27. while (em.hasMoreElements()) {
  28. String name = (String) em.nextElement();
  29. String value = request.getHeader(name);
  30. System.out.println(name+"="+value);
  31. }
  32. }

浏览器上地址栏:http://localhost:8080/RequestAndResponse/requestmethod?name=sunjob&password=123456&password=haha

控制台输出:

    1. getRequestURL: http://localhost:8080/RequestAndResponse/requestmethod
    2. getRequestURI: /RequestAndResponse/requestmethod
    3. getQueryString: name=sunjob&password=123456&password=haha
    4. getRemoteAddr: 127.0.0.1
    5. getRemoteHost: 127.0.0.1
    6. getRemotePort: 2374
    7. getRemoteUser: null
    8. getLocalAddr: 127.0.0.1
    9. getLocalName: localhost
    10. getLocalPort: 8080
    11. getMethod: GET
    12. -------request.getParamterMap()-------
    13. name=sunjob
    14. password=123456
    15. password=haha
    16. --------request.getHeader()--------
    17. host=localhost:8080
    18. user-agent=Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0
    19. accept=text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    20. accept-language=zh-cn,en-us;q=0.8,zh;q=0.5,en;q=0.3
    21. accept-encoding=gzip, deflate
    22. connection=keep-alive
    23. cache-control=max-age=0

httpRequest对象常用的方法的更多相关文章

  1. javascript中字符串对象常用的方法和属性

    前言 字符串是一种非常重要的数据类型,在Java等面向对象编程语言中,它代表对象类型,而在javascript中它却是一种基本数据类型,在开发的领域中,我们经常会碰到,无论是前端还是后台.比如后台验证 ...

  2. Array 对象常用的方法总结

    shift:删除原数组的第一项,返回删除元素的值:如果数组为空则返回undefined var arr = [1, 2, 3, 4, 5]; var out = arr.shift(); consol ...

  3. JavaScript操作Array对象常用的方法

     转换方法 因为JavaScript内部机制(继承),所有的对象都具有toLocalString() .toString().valueOf()方法,Array也不例外so:var colors = ...

  4. 日期Date 对象常用的方法

    var mydate = new Date();//通过new方法创建对象 //alert(Date()); // 返回一个完整的日期时间 // alert(mydate.getDay());//返回 ...

  5. JS中String对象常用的方法

    1.  stringObject.charAt(index) 参数:index 必需,即字符在字符串中的下标.  返回值:   返回在指定位置的字符.返回的字符是长度为 1的字符串.(length属性 ...

  6. javascript console对象 常用的方法

    console对象 var o = {name:'3'} console.assert(o.name === '3', "name 的值应该为:string 3"); consol ...

  7. Math内置对象 常用的方法

    属性: Math.Pi 方法: Math.max()   最大值 Math.min()  最小值 Math.ceil()  向上取整 Math.floor() 向下取整 Math.random()   ...

  8. Mongodb For C# "Query" 对象常用的方法

    Query.All("name", "a", "b");//通过多个元素来匹配数组 Query.In("name", & ...

  9. String对象中常用的方法

    String对象中常用的方法   1.charCodeAt方法返回一个整数,代表指定位置字符的Unicode编码.strObj.charCodeAt(index)说明:index将被处理字符的从零开始 ...

随机推荐

  1. MonoBehaviour

    所有的Unity脚本都继承自MonoBehaviour这个类,它没有Main函数入口,采用了事件触发的模式,根据不同的事件响应不同的函数. void Start(): void Update():每一 ...

  2. Video Toolbox:读写解码回调函数CVImageBufferRef的YUV图像

    本文档基于H.264的解码,介绍读写Video Toolbox解码回调函数参数CVImageBufferRef中的YUV或RGB数据的方法,并给出CVImageBufferRef生成灰度图代码.方便调 ...

  3. Array.Copy

    var bt = new byte[] { 0x03, 0x00, 0x01, 0xD9, 0x23 }; var result = new byte[] { 0x01, 0x00, 0x03, 0x ...

  4. Careercup - Google面试题 - 4857362737266688

    2014-05-04 00:10 题目链接 原题: Write a function return an integer that satisfies the following conditions ...

  5. Careercup - Facebook面试题 - 5733320654585856

    2014-05-02 09:59 题目链接 原题: Group Anagrams input = ["star, astr, car, rac, st"] output = [[& ...

  6. windows下编译Libevent

    下载最新的libevent,目前是 libevent-2.0.21-stable.tar.gz 修改“D:\libevent-2.0.21-stable\event_iocp.c”.“D:\libev ...

  7. [设计模式] 12 代理模式 proxy

    在GOF的<设计模式:可复用面向对象软件的基础>一书中对代理模式是这样说的:为其他对象提供一种代理以控制对这个对象的访问.结合上面的游戏代理的例子和下面的图,我们来进行分析一下.以前你是这 ...

  8. LA 4384

    扩展欧几里得 #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> ...

  9. ural 1869

    简单题 ~~ #include <cstdio> #include <cstring> #include <iostream> using namespace st ...

  10. solr4.5部署

    一.服务器部署 1.solr自带jetty服务器上部署 cd到solr-4.5.0\example目录下,运行java -jar start.jar即可运行jetty服务器.访问http://loca ...