博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java基础77 Http协议及Servlet中的GET、POST提交方式
阅读量:5269 次
发布时间:2019-06-14

本文共 16618 字,大约阅读时间需要 55 分钟。

本文知识点(目录):

   

   
   
   
   
   
   
   



1、什么是http协议

    http协议:是对浏览器(客户端)和服务端之间的数据传输的格式规范

2、查看http协议的工具

    1)使用火狐--->右击选择”查看元素”/”检查”--->网络--->点击里面你的访问页面即可显示(如下图中的index.jsp)

    2)使用谷歌--->右击选择”审查元素”/”检查”--->NetWork--->Headers
    3)使用系统自带的telnet工具(远程访问工具) (命令提示符)
        a)telnet localhost 8080     访问tomcat服务器
        b)ctrl+] 回车   可以看到回显
        c)请输入请求内容:
              GET /MyServlet/index.jsp HTTP/1.1
              Host: localhost:8080
        d)回车,即可查看到服务器响应的信息

3、http协议的内容

项目中index.jsp页面的内容

1 <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 <% 3 String path = request.getContextPath(); 4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 %> 6  7  8  9   10     11     12     My JSP 'index.jsp' starting page13     
14
15
16
17
18
21 22 23 24 hello world!25 26

用浏览器访问的结果 http://localhost:8080/MyServlet/index.jsp (假如不出现以下页面,可多刷新几次)

    

请求(浏览器)---->服务器

GET /MyServlet/index.jsp HTTP/1.1   --请求行

Host: localhost:8080                 --请求头(多个key-value对象)

Connection: keep-alive

Upgrade-Insecure-Requests: 1

User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36

Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8

Accept-Encoding: gzip, deflate, br

Accept-Language: zh-CN,zh;q=0.9

响应(服务器) ---->浏览器

HTTP/1.1 200 OK

Server: Apache-Coyote/1.1

Set-Cookie: JSESSIONID=408491619DF5756BAAF454FC2262AAAE; Path=/MyServlet; HttpOnly

Content-Type: text/html;charset=ISO-8859-1

Content-Length: 613

Date: Fri, 07 Sep 2018 09:30:59 GMT

附:请求路径

        URL:统一资源定位符。比如:http://localhost:8080/MyServlet/index.jsp 只能定位互联网资源,是URI的子集。
        URI:统一资源标识符。比如:/MyServlet/index.jsp 用于标记任何资源,可以是本地文件系统局域网资源,也可以是互联网资源

附:http的协议版本

    http1.0:当前浏览器客户端与服务端建立连接之后,只能发送一次请求,发送一次请求之后连接关闭
    http1.1:当前浏览器客户端与服务端建立连接之后,可以在一次连接中发送多次请求(基本上都使用1.1)

4、请求方式

    常见的请求方式:GET,POST,HRAD,TRACE,PUT,CONECT,DELETE

    常用的请求方式:GET和POST

4.1、GET方式提交

    a)地址栏 (URL) 会跟上参数数据。以?开头,多个参数之间以&分割    如:

    b)GET方式提交参数,数据限制,不超过1kb。
    c)GET方式不适合提交敏感数据 (如:密码)。
    d)注意:浏览器直接访问请求,默认请求方式是get方式。

4.2、POST方式提交

    a)参数不会跟在URI后面,而是跟在请求实体内容中。没有?开头、多个参数之间以&分割  如:

    b)post方式提交参数,数据是没有限制的
    c)适合提交敏感数据

5、请求头和响应头

请求头

Accept: text/html,image/*    -- 浏览器接受的数据类型
Accept-Charset: ISO-8859-1    -- 浏览器接受的编码格式
Accept-Encoding: gzip,compress  --浏览器接受的数据压缩格式
Accept-Language: en-us,zh-      --浏览器接受的语言
Host: www.it315.org:80    --(必须的)当前请求访问的目标地址(主机:端口)
If-Modified-Since: Tue, 11 Jul 2000 18:23:51 GMT    --浏览器最后的缓存时间
Referer: http://www.it315.org/index.jsp    -- 当前请求来自于哪里
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)   --浏览器类型
Cookie:name=eric     -- 浏览器保存的cookie信息
Connection: close/Keep-Alive   -- 浏览器跟服务器连接状态。close: 连接关闭  keep-alive:保存连接。
Date: Tue, 11 Jul 2000 18:23:51 GMT    -- 请求发出的时间

响应头

Location: http://www.it315.org/index.jsp   --表示重定向的地址,该头和302的状态码一起使用。
Server:apache tomcat   ---表示服务器的类型
Content-Encoding: gzip   -- 表示服务器发送给浏览器的数据压缩类型
Content-Length: 80  --表示服务器发送给浏览器的数据长度
Content-Language: zh-cn  --表示服务器支持的语言
Content-Type: text/html; charset=GB2312   --表示服务器发送给浏览器的数据类型及内容编码
Last-Modified: Tue, 11 Jul 2000 18:23:51 GMT  --表示服务器资源的最后修改时间
Refresh: 1;url=http://www.it315.org   --表示定时刷新
Content-Disposition: attachment; filename=aaa.zip   --表示告诉浏览器以下载方式打开资源(下载文件时用到)
Transfer-Encoding: chunked
Set-Cookie:SS=Q0=5Lb_nQ; path=/search   --表示服务器发送给浏览器的cookie信息(会话管理用到)
Expires: -1     --表示通知浏览器不进行缓存
Cache-Control: no-cache
Pragma: no-cache
Connection: close/Keep-Alive    --表示服务器和浏览器的连接状态。close:关闭连接 keep-alive:保存连接

5.1、获取请求方式及请求头的信息

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.util.Enumeration; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.http.HttpServlet; 8 import javax.servlet.http.HttpServletRequest; 9 import javax.servlet.http.HttpServletResponse;10 11 /**12  * @author DSHORE / 2018-9-713  *14  */15 public class MyServletOne extends HttpServlet {16 17     public void doGet(HttpServletRequest request, HttpServletResponse response)18             throws ServletException, IOException {19         //设置编码20         response.setContentType("text/html;charset=UTF-8");21         //请求行  格式:(GET /day09/index.html HTTP/1.1)    22         System.out.println("请求方式:"+request.getMethod());//请求方式23         System.out.println("URI:"+request.getRequestURI());//请求资源24         System.out.println("URL:"+request.getRequestURL());25         System.out.println("http协议版本:"+request.getProtocol());//http协议26         System.out.println();27         28         //请求头29         String host=request.getHeader("Host");//根据头名称的头得到头的内容30         System.out.println("请求头:"+host);31         Enumeration
enums=request.getHeaderNames();//得到所有请求头列表32 while(enums.hasMoreElements()){
//判断是否有下一个元素33 String headerName=enums.nextElement();//取出下一位元素34 String headerValue=request.getHeader(headerName);35 System.out.println(headerName+":"+headerValue);36 }37 }38 }

结果图

6、实体内容

    只有POST提交的参数才会放到实体内容中,GET提交方式没有。

6.1、HttpServletRequest对象

HttpServletRequest对象获取请求的信息

  请求行:
        Request.getMethod();  --请求方式
        Request.getRequestURI();  --请求资源
        Request.getProtocol();  --请求http的协议版本
  请求头:
        request.getHeader(“名称”);  --根据请求名称获取请求的值
        request.getHeaderNames();   --获取所有的请求头的名称
  实体内容:
        request.getInputStream()  --获取实体内容数据

6.2、实例

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.io.PrintWriter; 6 import java.util.Enumeration; 7  8 import javax.servlet.ServletException; 9 import javax.servlet.http.HttpServlet;10 import javax.servlet.http.HttpServletRequest;11 import javax.servlet.http.HttpServletResponse;12 13 /**14  * @author DSHORE / 2018-9-1115  *16  */17 public class MyServletTwo extends HttpServlet {18     public void doPost(HttpServletRequest request, HttpServletResponse response)19             throws ServletException, IOException {20         //设置编码21         response.setContentType("text/html;charset=UTF-8");22         //请求行  格式:(GET /day09/index.html HTTP/1.1)    23         System.out.println("请求方式:"+request.getMethod());//请求方式24         System.out.println("URI:"+request.getRequestURI());//请求资源25         System.out.println("URL:"+request.getRequestURL());26         System.out.println("http协议版本:"+request.getProtocol());//http协议27         System.out.println();28         29         //请求头30         String host = request.getHeader("Host");//根据头名称的头得到头的内容31         System.out.println("请求头:"+host);32         Enumeration
enums = request.getHeaderNames();//得到所有请求头列表33 while(enums.hasMoreElements()){
//判断是否有下一个元素34 String headerName = enums.nextElement();//取出下一位元素35 String headerValue = request.getHeader(headerName);36 System.out.println(headerName+":"+headerValue);37 }38 39 System.out.println();40 //获取请求头的实体内容41 InputStream is = request.getInputStream();//得到实体内容42 //读实体内容43 byte[] buf = new byte[1024];44 int length = 0;45 while ((length = is.read(buf)) != -1){46 String str = new String(buf,0,length);//把实体内容转换成字符串的形式47 System.out.println("实体内容:"+str);48 }49 }50 }

结果图

6.3、页面报405错误的原因及解决方法

    

7、获取传递的请求参数

  1、GET方式:参数放在URI后面

  2、POST方式:参数放在实体内容中
      GET方式获取参数:Request.getQueryString();
      POST方式获取参数:Request.getInputStream();
注意:但是以上两种不通用,而且获取到参数还需要进一步解析,所以需要统一方便的获取参数的方式:
Request.getParameter(“参数名”);   根据参数名获取参数值(注意:只能获取一个参数值)

7.1、实例

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.io.InputStream; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.http.HttpServlet; 8 import javax.servlet.http.HttpServletRequest; 9 import javax.servlet.http.HttpServletResponse;10 11 /**12  * @author DSHORE / 2018-9-1113  *14  */15 public class MyServletTree extends HttpServlet {16     public void doGet(HttpServletRequest request, HttpServletResponse response)17             throws ServletException, IOException {18         String value=request.getQueryString();//GET方式获取实体内容参数19         System.out.println("实体内容参数:"+value);//返回值:name=haha&password=123&sex=nv&jiguan=gd&hobit=lq&hobit=ymq&info=helloWorld&id=00120         21         String name=request.getParameter("name");22         String pass=request.getParameter("password");23         System.out.println(name+":"+pass);//返回值:haha:12324         String sex=request.getParameter("sex");25         System.out.println("性别:"+sex);//返回值:nv26         String jiguan=request.getParameter("jiguan");27         System.out.println("籍贯:"+jiguan);//返回值:gd28         String[] hobit=request.getParameterValues("hobit");29         for (String string : hobit) {30             System.out.println("爱好:"+string);//返回值:lq、ymq31         }32         String info=request.getParameter("info");33         System.out.println("个人简历:"+info);//返回值:helloWorld34         String id=request.getParameter("id");35         System.out.println("编号:"+id);//返回值:00136     }37 38     public void doPost(HttpServletRequest request, HttpServletResponse response)39             throws ServletException, IOException {40         doGet(request, response);//调用doGet()方法41         InputStream value=request.getInputStream();//POST方式获取实体内容参数42         byte[] buf=new byte[1024];43         int len=0;44         while((len=value.read(buf))!=-1){45             String str=new String(buf,0,len);46             System.out.println(str);47         }48         String name=request.getParameter("name");49         System.out.println(name);50     }51 }

getParamter.html

1  2  3    4     getParamter.html 5      6     
7
8
9 10
11 12 13 14 15

GET提交方式

16
17 用户名:
18 密 码:
19
男20
女21 籍贯:22
27
28 爱好:29
篮球30
足球31
羽毛球
32 个人简历:33
34
35
36
37 38

运行后的结果图(效果图)

控台显示的结果

附录1

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.io.PrintWriter; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.ServletRequest; 8 import javax.servlet.ServletResponse; 9 import javax.servlet.http.HttpServlet;10 import javax.servlet.http.HttpServletRequest;11 import javax.servlet.http.HttpServletResponse;12 /*13  * 注意:tomcat服务器首先会调用servlet的service方法,然后在service方法中根据请求方式分别调用对应的doXX方法14  *  (例如:如果是GET请求方式,在service方法中调用doGet方法)15  *16  * 因为最常见的请求方式是GET和POST,所有编写servlet程序,只需要覆盖doGet和doPost方法17  * */18 public class Demo2Request extends HttpServlet {19     @Override20     protected void service(HttpServletRequest req, HttpServletResponse resp)21             throws ServletException, IOException {22         System.out.println("service方法被调用");23         System.out.println(req.getMethod());24     }25     public void doGet(HttpServletRequest request, HttpServletResponse response)26             throws ServletException, IOException {27         System.out.println("GET方式提交");28     }29     @Override30     protected void doPost(HttpServletRequest req, HttpServletResponse resp)31             throws ServletException, IOException {32         System.out.println("POST方式提交");33     }34 }

附录2

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.io.PrintWriter; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.http.HttpServlet; 8 import javax.servlet.http.HttpServletRequest; 9 import javax.servlet.http.HttpServletResponse;10 /*11  * 案例:获取浏览器的类型12  * */13 public class Demo3Request extends HttpServlet {14     public void doGet(HttpServletRequest request, HttpServletResponse response)15             throws ServletException, IOException {16         response.setContentType("text/html;charset=utf-8");17         //获取请求头18         String userAgen=request.getHeader("User-Agent");19         System.out.println(userAgen);20         //判断用户使用浏览器的类型21         if(userAgen.contains("Firefox")){22             System.out.println("你正在使用火狐浏览器");23         }else if(userAgen.contains("Chrome")){24             System.out.println("你正在使用谷歌浏览器");25         }else if (userAgen.contains("Trident")) {26             System.out.println("你正在使用IE浏览器");27         }else{28             System.out.println("你使用的是其他品牌的浏览器");29         }30     }31     public void doPost(HttpServletRequest request, HttpServletResponse response)32             throws ServletException, IOException {33     }34 }

附录3

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.io.PrintWriter; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.http.HttpServlet; 8 import javax.servlet.http.HttpServletRequest; 9 import javax.servlet.http.HttpServletResponse;10 /*11  * 案例-防止非法链接(防止直接跳过原页面,即没够买VIP就直接跳到VIP页面使用)12  * 这里需要下载的资源13  * */14 public class Demo4Request extends HttpServlet {15     public void doGet(HttpServletRequest request, HttpServletResponse response)16             throws ServletException, IOException {17         response.setContentType("text/html;charset=utf-8");18         //得到Referer头19         String referer=request.getHeader("Referer");20         System.out.println("referer"+referer);21         /*22          * 判断非链接:23          * 1)直接访问的话referer=null24          * 2)如果当前请求不是来自与广告25          * */26         if(referer==null || !referer.contains("/day18/adv.html")){27             response.getWriter().write("当前是非法的链接,请回到.首页");28         }else{29             //正确的链接30             response.getWriter().write("海量资源,资源正在下载");31         }32     }33     public void doPost(HttpServletRequest request, HttpServletResponse response)34             throws ServletException, IOException {35     }36 }

附录4

1、请求参数的编码问题

1.1、修改post方式参数的编码

    Request.setCharacterEncoding(“utf-8”);
1.2、修改get方式参数的编码(有多少个参数就写多少次;或者直接修改Tomcat中配置文件[即在端口号那一行代码后面加上URLEncoding=“utf-8”;],不建议这样做)
    String name=request.getParameter("name");
    String names=new String(name.getBytes(“iso8859-1”),”utf-8”);

2、状态码:服务器处理请求的结果(状态)

常见的状态码

    200:表示请求处理完成完美返回
    302:表示请求需要进一步细化
    404:表示客户访问的资源找不到(即找不到访问路径或者说路径错误)
    500:表示服务器资源发送错误(服务器内部错误,即代码错误)

3、总结

http协议:浏览器和服务器之间数据传输的格式规范

1、http请求
    a)格式
    b)请求行
    c)请求头
    d)空行
    e)实体内容(post提交数据的实体内容)
重点:使用HttpServletRequest对象;获取请求数据
2、http响应
    a)格式
    b)响应行
    c)响应头
    d)空行
    e)实体内容(浏览器上看到内容)
重点:使用HttpServletResponse对象;设置响应数据

1 package com.shore.servlet; 2  3 import java.io.IOException; 4 import java.io.PrintWriter; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.http.HttpServlet; 8 import javax.servlet.http.HttpServletRequest; 9 import javax.servlet.http.HttpServletResponse;10 /*11  * 案例:定时刷新12  * */13 public class Demo3Response extends HttpServlet {    14     public void doGet(HttpServletRequest request, HttpServletResponse response)15             throws ServletException, IOException {16         //知识点1:设置响应实体内容编码17         /*response.setCharacterEncoding("utf-8");18         response.setContentType("text/xml");*/19         request.setCharacterEncoding("utf-8");20         response.setContentType("text/html;charset=utf-8");21             22         /*23          * 知识点2:定时刷新24          * 原理:浏览器认识Refresh头,得到Refresh之后重写请求当前资源25          * */26         response.setHeader("Refresh","1");//每隔一秒,刷新一次27         //隔n秒之后跳转到另一个资源28         response.setHeader("Refresh","3;url=/MyServletTree/Index.html");//隔3秒跳转到Index.html页面29         30         /*31          * 知识点3:需求跳转到index.html32          * 使用请求重定向:发送一个302状态码+localhost响应头33          * */34         response.setStatus(302);//发送一个302状态码35         response.setHeader("location","/MyServletTree/Index.html");//localhost的响应头 (页面跳转,但,不是重定向的方式)36         //response.sendRedirect("/MyServletTree/Index.html");//重定向(页面跳转)37         38         //知识点4:以html的格式向页面写内容39         response.getOutputStream().write("this is title中国".getBytes());40         //response.getWriter().write("this is titlelove me 何");41         42         //知识点5:下载图片43         response.setContentType("image/jpg");44         File f=new File("F://imge/1188260.jpg");45         //发送图片46         FileInputStream in=new FileInputStream(f);47         byte[] buf=new byte[1024];48         int len=0;49         while((len=in.read(buf))!=-1){50                 response.getOutputStream().write(buf,0,len);51         }52         //下载图片53         response.setHeader("Content-Disposition", "attachment; filename="+f.getName());    54     }55     56     public void doPost(HttpServletRequest request, HttpServletResponse response)57             throws ServletException, IOException {58         doGet(request, response);59     }60 }

 

 

 

 

原创作者:

作者主页:

原文出自:

欢迎转载,转载务必说明出处。(如果本文对您有帮助,可以点击一下右下角的 推荐,或评论,谢谢!

转载于:https://www.cnblogs.com/dshore123/p/9599952.html

你可能感兴趣的文章
NOIP2016提高A组五校联考2总结
查看>>
RabbitMQ学习系列三:.net 环境下 C#代码订阅 RabbitMQ 消息并处理
查看>>
Python日期计算
查看>>
对其他团队的项目的意见或建议
查看>>
iOS 项目的编译速度提高
查看>>
机房收费系统——报表
查看>>
How to unshelve many shelves at same time
查看>>
table中checkbox选择多行
查看>>
动态链接库
查看>>
Magento开发文档(三):Magento控制器
查看>>
使用Docker官方的Django包【转】
查看>>
SuperSocket 学习
查看>>
给培训学校讲解ORM框架的课件
查看>>
此实现不是 Windows 平台 FIPS 验证的加密算法的一部分
查看>>
性能调优攻略
查看>>
线段树模板讲解
查看>>
ie6解决png图片透明问题
查看>>
瞬间的永恒
查看>>
docker overlay网络实现
查看>>
2019-8-5 考试总结
查看>>