HttpServletRequest,看這篇文章就夠了

程式設計師歐陽思海發表於2018-09-04

一、HttpServletRequest介紹

HttpServletRequest物件代表客戶端的請求,當客戶端通過HTTP協議訪問伺服器時,HTTP請求頭中的所有資訊都封裝在這個物件中,通過這個物件提供的方法,可以獲得客戶端請求的所有資訊。

二、jsp頁面引入js,css檔案的方式

精彩內容推薦

在eclipse中新建一個web專案,目錄結構如下:

image

在jsp頁面的最開始,獲取專案的根路徑:

<%
   String path = request.getContextPath();
   String basePath = request.getScheme() + "://"
           + request.getServerName() + ":" + request.getServerPort()
           + path + "/";
%>
複製程式碼

在中,插入下述程式碼:

<base href="<%=basePath%>" />
複製程式碼

這句程式碼的作用是將整個頁面的根路徑設定為專案路徑。

三、Request常用方法

1、獲得客戶機資訊

getRequestURL() 返回客戶端發出請求時的完整URL。
getRequestURI() 返回請求行中的資源名部分。
getQueryString () 返回請求行中的引數部分。
getRemoteAddr() 返回發出請求的客戶機的IP地址。
getPathInfo() 返回請求URL中的額外路徑資訊。額外路徑資訊是請求URL中的位於Servlet的路徑之後和查詢引數之前的內容,它以"/"開頭。
getRemoteHost() 返回發出請求的客戶機的完整主機名。
getRemotePort() 返回客戶機所使用的網路埠號。
getLocalAddr() 返回WEB伺服器的IP地址。
getLocalName() 返回WEB伺服器的主機名。
private void RequestMessages(HttpServletRequest req, HttpServletResponse resp) throws IOException{
    String reqUrl = req.getRequestURL().toString();//得到請求的URL地址
    String reqUri = req.getRequestURI();//得到請求的資源
    String queryString = req.getQueryString();//得到請求的URL地址中附帶的引數
    String remoteAddr = req.getRemoteAddr();//得到來訪者的IP地址
    String remoteHost = req.getRemoteHost();
    int remotePort = req.getRemotePort();
    String remoteUser = req.getRemoteUser();
    String method = req.getMethod();//得到請求URL地址時使用的方法
    String pathInfo = req.getPathInfo();
    String localAddr = req.getLocalAddr();//獲取WEB伺服器的IP地址
    String localName = req.getLocalName();//獲取WEB伺服器的主機名
    resp.setCharacterEncoding("UTF-8");//設定將字元以"UTF-8"編碼輸出到客戶端瀏覽器
    //通過設定響應頭控制瀏覽器以UTF-8的編碼顯示資料,如果不加這句話,那麼瀏覽器顯示的將是亂碼
    resp.setHeader("content-type", "text/html;charset=UTF-8");
    PrintWriter out = resp.getWriter();
    out.write("獲取到的客戶機資訊如下:");
    out.write("<br/>");
    out.write("請求的URL地址:"+reqUrl);
    out.write("<br/>");
    out.write("請求的資源:"+reqUri);
    out.write("<br/>");
    out.write("請求的URL地址中附帶的引數:"+queryString);
    out.write("<br/>");
    out.write("來訪者的IP地址:"+remoteAddr);
    out.write("<br/>");
    out.write("來訪者的主機名:"+remoteHost);
    out.write("<br/>");
    out.write("使用的埠號:"+remotePort);
    out.write("<br/>");
    out.write("remoteUser:"+remoteUser);
    out.write("<br/>");
    out.write("請求使用的方法:"+method);
    out.write("<br/>");
    out.write("pathInfo:"+pathInfo);
    out.write("<br/>");
    out.write("localAddr:"+localAddr);
    out.write("<br/>");
    out.write("localName:"+localName);
}
複製程式碼

2.png

2、獲得客戶機請求頭

  • getHeader(string name)方法:String

  • getHeaders(String name)方法:Enumeration

  • getHeaderNames()方法

private void RequestHead(HttpServletRequest req, HttpServletResponse resp) throws IOException{
    resp.setCharacterEncoding("UTF-8");//設定將字元以"UTF-8"編碼輸出到客戶端瀏覽器
    //通過設定響應頭控制瀏覽器以UTF-8的編碼顯示資料
    resp.setHeader("content-type", "text/html;charset=UTF-8");
    PrintWriter out = resp.getWriter();
    Enumeration<String> reqHeadInfos = req.getHeaderNames();//獲取所有的請求頭
    out.write("獲取到的客戶端所有的請求頭資訊如下:");
    out.write("<br/>");
    while (reqHeadInfos.hasMoreElements()) {
        String headName = (String) reqHeadInfos.nextElement();
        String headValue = req.getHeader(headName);//根據請求頭的名字獲取對應的請求頭的值
        out.write(headName+":"+headValue);
        out.write("<br/>");
    }
    out.write("<br/>");
    out.write("獲取到的客戶端Accept-Encoding請求頭的值:");
    out.write("<br/>");
    String value = req.getHeader("Accept-Encoding");//獲取Accept-Encoding請求頭對應的值
    out.write(value);
    
    Enumeration<String> e = req.getHeaders("Accept-Encoding");
    while (e.hasMoreElements()) {
        String string = (String) e.nextElement();
        System.out.println(string);
    }
}
複製程式碼

image

3、獲得客戶機請求引數

getParameter(String name) 根據name獲取請求引數(常用)
getParameterValues(String name) 根據name獲取請求引數列表(常用)
getParameterMap() 返回的是一個Map型別的值,該返回值記錄著前端(如jsp頁面)所提交請求中的請求引數和請求引數值的對映關係。(編寫框架時常用)

如下表單:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%
   String path = request.getContextPath();
   String basePath = request.getScheme() + "://"
           + request.getServerName() + ":" + request.getServerPort()
           + path + "/";
%>
<html>
<head>
<base href="<%=basePath%>" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>表單提交</title>
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
    <form class="form-horizontal" action="<%=request.getContextPath()%>/GetParameterRequest.html" role="form" method="post">
        <div class="form-group">
            <label for="firstname" class="col-sm-1 control-label">名字</label>
            <div class="col-sm-3">
                <input type="text" class="form-control" name="name"
                    placeholder="請輸入名字">
            </div>
        </div>
        <div class="form-group">
            <label for="lastname" class="col-sm-1 control-label">年齡</label>
            <div class="col-sm-3">
                <input type="text" class="form-control" name="age"
                    placeholder="請輸年齡">
            </div>
        </div>
        <div class="form-group">
            <label for="lastname" class="col-sm-1 control-label">性別</label>
            <div class="col-sm-3">
                <input type="radio" name="sex" value="男" checked>男
                <input type="radio" name="sex" value="女">女
            </div>
        </div>
        <div class="form-group">
            <label for="lastname" class="col-sm-1 control-label">愛好</label>
            <div class="col-sm-3">
                <input type="checkbox" name="aihao" value="唱歌">唱歌
                <input type="checkbox" name="aihao" value="上網">上網
                <input type="checkbox" name="aihao" value="遊戲">遊戲
                <input type="checkbox" name="aihao" value="看書">看書
            </div>
        </div>
        <div class="form-group">
            <div class="col-sm-offset-1 col-sm-3">
                <button type="submit" class="btn btn-default">提交</button>
                <button type="reset" class="btn btn-default">重置</button>
            </div>
        </div>
    </form>
</body>
</html>
複製程式碼

使用getParameter方法和getParameterValues方法接收表單引數:

public class GetParameterRequest extends HttpServlet{
 
    private static final long serialVersionUID = 3903946972744326948L;
    
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.doPost(req, resp);
    }
    
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //客戶端是以UTF-8編碼提交表單資料的,所以需要設定伺服器端以UTF-8的編碼進行接收,否則對於中文資料就會產生亂碼
        req.setCharacterEncoding("UTF-8");
        //獲取名字
        String name = req.getParameter("name");
        //獲取年齡
        String age = req.getParameter("age");
        //獲取性別
        String sex = req.getParameter("sex");
        //獲取愛好,因為可以選中多個值,所以獲取到的值是一個字串陣列,因此需要使用getParameterValues方法來獲取
        String[] aihaos = req.getParameterValues("aihao");
        
        String aihao = "";
        if(aihaos != null){
            for (int i = 0; i < aihaos.length; i++) {
                if(i == aihaos.length - 1){
                    aihao += aihaos[i];
                } else {
                    aihao += aihaos[i] + ",";
                }
            }
        }
        System.out.println("名字:" + name);
        System.out.println("年齡:" + age);
        System.out.println("性別:" + sex);
        System.out.println("愛好:" + aihao);
        req.setAttribute("aihao", aihao);
        //設定伺服器端以UTF-8編碼輸出資料到客戶端
        resp.setCharacterEncoding("UTF-8");
        this.getServletContext().getRequestDispatcher("/request.jsp").forward(req, resp);
    }
}
複製程式碼

響應頁面:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%
   String path = request.getContextPath();
   String basePath = request.getScheme() + "://"
           + request.getServerName() + ":" + request.getServerPort()
           + path + "/";
%>
<html>
<head>
<base href="<%=basePath%>" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>表單提交</title>
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<table class="table">
   <thead>
      <tr>
         <th>名稱</th>
         <th>結果</th>
      </tr>
   </thead>
   <tbody>
      <tr>
         <td>姓名</td>
         <td><%=request.getParameter("name") %></td>
      </tr>
      <tr>
         <td>年齡</td>
         <td><%=request.getParameter("age") %></td>
      </tr>
      <tr>
         <td>性別</td>
         <td><%=request.getParameter("sex") %></td>
      </tr>
      <tr>
         <td>愛好</td>
         <td><%=request.getAttribute("aihao") %></td>
      </tr>
   </tbody>
</table>
</body>
</html>
複製程式碼

提交如下表單:

image

後臺列印:

image

執行結果如下:

image

四、request接收表單提交中文引數亂碼問題

1、以POST方式提交表單中文引數的亂碼問題

有如下表單:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%
   String path = request.getContextPath();
   String basePath = request.getScheme() + "://"
           + request.getServerName() + ":" + request.getServerPort()
           + path + "/";
%>
<html>
<head>
<base href="<%=basePath%>" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>表單提交</title>
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
    <form class="form-horizontal" action="<%=request.getContextPath()%>/PostRequest.html" role="form" method="post">
        <div class="form-group">
            <label for="firstname" class="col-sm-1 control-label">名字</label>
            <div class="col-sm-3">
                <input type="text" class="form-control" name="name"
                    placeholder="請輸入名字">
            </div>
        </div>
        <div class="form-group">
            <div class="col-sm-offset-1 col-sm-3">
                <button type="submit" class="btn btn-default">提交</button>
                <button type="reset" class="btn btn-default">重置</button>
            </div>
        </div>
    </form>
</body>
</html>
複製程式碼

後臺接收引數:

public class PostRequest extends HttpServlet{
 
    private static final long serialVersionUID = 3903946972744326948L;
    
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.doPost(req, resp);
    }
    
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String name = req.getParameter("name");
        System.out.println("名字:" + name);
    }
}
複製程式碼

提交資料:

image

執行結果:

image

之所以會產生亂碼,就是因為伺服器和客戶端溝通的編碼不一致造成的,因此解決的辦法是:在客戶端和伺服器之間設定一個統一的編碼,之後就按照此編碼進行資料的傳輸和接收。

由於客戶端是以UTF-8字元編碼將表單資料傳輸到伺服器端的,因此伺服器也需要設定以UTF-8字元編碼進行接收,通過setCharacterEncoding方法統一編碼格式:

public class PostRequest extends HttpServlet{
 
    private static final long serialVersionUID = 3903946972744326948L;
    
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.doPost(req, resp);
    }
    
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //設定伺服器以UTF-8的編碼接收資料
        req.setCharacterEncoding("UTF-8");
        String name = req.getParameter("name");
        System.out.println("名字:" + name);
    }
}
複製程式碼

重新提交表單,中文亂碼解決:

image

2、以GET方式提交表單中文引數的亂碼問題

有如下表單:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%
   String path = request.getContextPath();
   String basePath = request.getScheme() + "://"
           + request.getServerName() + ":" + request.getServerPort()
           + path + "/";
%>
<html>
<head>
<base href="<%=basePath%>" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>表單提交</title>
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
    <form class="form-horizontal" action="<%=request.getContextPath()%>/GetRequest.html" role="form" method="get">
        <div class="form-group">
            <label for="firstname" class="col-sm-1 control-label">名字</label>
            <div class="col-sm-3">
                <input type="text" class="form-control" name="name"
                    placeholder="請輸入名字">
            </div>
        </div>
        <div class="form-group">
            <div class="col-sm-offset-1 col-sm-3">
                <button type="submit" class="btn btn-default">提交</button>
                <button type="reset" class="btn btn-default">重置</button>
            </div>
        </div>
    </form>
</body>
</html>
複製程式碼

後臺接收引數:

public class GetRequest extends HttpServlet{
 
    private static final long serialVersionUID = 3903946972744326948L;
    
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.doPost(req, resp);
    }
    
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String name = req.getParameter("name");
        System.out.println("名字:" + name);
    }
}
複製程式碼

提交資料:

image

執行結果:

image

之所以會產生亂碼,對於以get方式傳輸的資料,預設的還是使用ISO8859-1這個字元編碼來接收資料,客戶端以UTF-8的編碼傳輸資料到伺服器端,而伺服器端的request物件使用的是ISO8859-1這個字元編碼來接收資料,伺服器和客戶端溝通的編碼不一致因此才會產生中文亂碼的。

解決方法:

在接收到資料後,先獲取request物件以ISO8859-1字元編碼接收到的原始資料的位元組陣列,然後通過位元組陣列以指定的編碼構建字串

public class GetRequest extends HttpServlet{
 
    private static final long serialVersionUID = 3903946972744326948L;
    
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.doPost(req, resp);
    }
    
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String name = req.getParameter("name");
        //以ISO8859-1字元編碼接收到的原始資料的位元組陣列,然後通過位元組陣列以指定的編碼構建字串
        name = new String(name.getBytes("ISO8859-1") , "UTF-8");
        System.out.println("名字:" + name);
    }
}
複製程式碼

重新提交表單,中文亂碼解決:

image

五、Request物件實現請求轉發

4.1、請求轉發的基本概念

請求轉發:指一個web資源收到客戶端請求後,通知伺服器去呼叫另外一個web資源進行處理。

請求轉發的應用場景:MVC設計模式

在Servlet中實現請求轉發的兩種方式:

1、通過ServletContext的getRequestDispatcher(String path)方法,該方法返回一個RequestDispatcher物件,呼叫這個物件的forward方法可以實現請求轉發。

例如:將請求轉發的test.jsp頁面

RequestDispatcher reqDispatcher =this.getServletContext().getRequestDispatcher("/test.jsp");
reqDispatcher.forward(request, response);
複製程式碼

 2、通過request物件提供的getRequestDispatche(String path)方法,該方法返回一個RequestDispatcher物件,呼叫這個物件的forward方法可以實現請求轉發。

例如:將請求轉發的test.jsp頁面

request.getRequestDispatcher("/test.jsp").forward(request, response);
複製程式碼

request物件同時也是一個域物件(Map容器),開發人員通過request物件在實現轉發時,把資料通過request物件帶給其它web資源處理。

例如:請求RequestDemo06 Servlet,RequestDemo06將請求轉發到test.jsp頁面

package gacl.request.study;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class RequestDemo06 extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        String data="大家好,我是孤傲蒼狼,我正在總結JavaWeb";
        /**
         * 將資料存放到request物件中,此時把request物件當作一個Map容器來使用
         */
        request.setAttribute("data", data);
        //客戶端訪問RequestDemo06這個Servlet後,RequestDemo06通知伺服器將請求轉發(forward)到test.jsp頁面進行處理
        request.getRequestDispatcher("/test.jsp").forward(request, response);
    }

    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        doGet(request, response);
    }
}
複製程式碼

test.jsp頁面程式碼如下:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>Request物件實現請求轉發</title>
  </head>
  
  <body>
      使用普通方式取出儲存在request物件中的資料:
      <h3 style="color:red;"><%=(String)request.getAttribute("data")%></h3>
     使用EL表示式取出儲存在request物件中的資料:
     <h3 style="color:red;">${data}</h3>
  </body>
</html>
複製程式碼

request物件作為一個域物件(Map容器)使用時,主要是通過以下的四個方法來操作

  • setAttribute(String name,Object o)方法,將資料作為request物件的一個屬性存放到request物件中,例如:request.setAttribute("data", data);
  • getAttribute(String name)方法,獲取request物件的name屬性的屬性值,例如:request.getAttribute("data")
  • removeAttribute(String name)方法,移除request物件的name屬性,例如:request.removeAttribute("data")
  • getAttributeNames方法,獲取request物件的所有屬性名,返回的是一個,例如:Enumeration attrNames = request.getAttributeNames();

4.2、請求重定向和請求轉發的區別

一個web資源收到客戶端請求後,通知伺服器去呼叫另外一個web資源進行處理,稱之為請求轉發/307。

一個web資源收到客戶端請求後,通知瀏覽器去訪問另外一個web資源進行處理,稱之為請求重定向/302。

參考資料

http://www.cnblogs.com/xdp-gacl/p/3798347.html
https://www.cnblogs.com/Zender/p/7647503.html
複製程式碼
精彩內容推薦

文章有不當之處,歡迎指正,如果喜歡微信閱讀,你也可以關注我的微信公眾號:好好學java,獲取優質學習資源。

相關文章