Http協議及Servlet中的GET、POST提交方式
Http協議及Servlet中的GET、POST提交方式
本文知識點(目錄):
本文知識點(目錄):
1、什麼是http協議
2、檢視http協議的工具
3、http協議的內容
4、請求方式
5、請求頭和響應頭(以及獲取請求頭資訊的方法)
6、實體內容
8、附錄1、2、3、4
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 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 8 <html> 9 <head> 10 <base href="<%=basePath%>"> 11 12 <title>My JSP 'index.jsp' starting page</title> 13 <meta http-equiv="pragma" content="no-cache"> 14 <meta http-equiv="cache-control" content="no-cache"> 15 <meta http-equiv="expires" content="0"> 16 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 17 <meta http-equiv="description" content="This is my page"> 18 <!-- 19 <link rel="stylesheet" type="text/css" href="styles.css"> 20 --> 21 </head> 22 23 <body> 24 hello world! 25 </body> 26 </html>
用瀏覽器訪問的結果 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
<form action=”提交地址” method=”GET/POST”> </from>
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-7 13 * 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<String> 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-11 15 * 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<String> 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-11 13 * 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=001 20 21 String name=request.getParameter("name"); 22 String pass=request.getParameter("password"); 23 System.out.println(name+":"+pass);//返回值:haha:123 24 String sex=request.getParameter("sex"); 25 System.out.println("性別:"+sex);//返回值:nv 26 String jiguan=request.getParameter("jiguan"); 27 System.out.println("籍貫:"+jiguan);//返回值:gd 28 String[] hobit=request.getParameterValues("hobit"); 29 for (String string : hobit) { 30 System.out.println("愛好:"+string);//返回值:lq、ymq 31 } 32 String info=request.getParameter("info"); 33 System.out.println("個人簡歷:"+info);//返回值:helloWorld 34 String id=request.getParameter("id"); 35 System.out.println("編號:"+id);//返回值:001 36 } 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 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>getParamter.html</title> 5 6 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 7 <meta http-equiv="description" content="this is my page"> 8 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 9 10 <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> 11 12 </head> 13 14 <body> 15 <h3>GET提交方式</h3> 16 <form action="MyServletTree" method="get"> 17 使用者名稱:<input type="text" name="name"/><br/> 18 密 碼:<input type="password" name="password"/><br/> 19 <input type="radio" name="sex" value="nan"/>男 20 <input type="radio" name="sex" value="nv"/>女 21 籍貫: 22 <select name="jiguan"> 23 <option value="gd">廣東</option> 24 <option value="gx">廣西</option> 25 <option value="hb">湖北</option> 26 </select> 27 <br/> 28 愛好: 29 <input type="checkbox" name="hobit" value="lq"/>籃球 30 <input type="checkbox" name="hobit" value="zq"/>足球 31 <input type="checkbox" name="hobit" value="ymq"/>羽毛球</br> 32 個人簡歷: 33 <textarea rows="5" cols="10" name="info"></textarea><br/> 34 <input type="hidden" name="id" value="001"/> 35 <input type="submit" value="提交"/> 36 </form> 37 </body> 38 </html>
執行後的結果圖(效果圖)
控臺顯示的結果
附錄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 @Override 20 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 @Override 30 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=null 24 * 2)如果當前請求不是來自與廣告 25 * */ 26 if(referer==null || !referer.contains("/day18/adv.html")){ 27 response.getWriter().write("當前是非法的連結,請回到.<a href='/day18/adv.html'>首頁</a>"); 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.html 32 * 使用請求重定向:傳送一個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("<html><head><title>this is title</title></head><body>中國</body></html>".getBytes()); 40 //response.getWriter().write("<html><head><title>this is title</title></head><body>love me 何</body></html>"); 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 }
原創作者:DSHORE 作者主頁:http://www.cnblogs.com/dshore123/ 原文出自:https://www.cnblogs.com/dshore123/p/9599952.html 歡迎轉載,轉載務必說明出處。(如果本文對您有幫助,可以點選一下右下角的 推薦,或評論,謝謝!) |