1. 程式人生 > >request用法以及詳解

request用法以及詳解

1request概述

request是Servlet.service()方法的一個引數,型別為javax.servlet.http.HttpServletRequest。在客戶端發出每個請求時,伺服器都會建立一個request物件,並把請求資料封裝到request中,然後在呼叫Servlet.service()方法時傳遞給service()方法,這說明在service()方法中可以通過request物件來獲取請求資料。

request的功能可以分為以下幾種:

l 封裝了請求頭資料;

l 封裝了請求正文資料,如果是GET請求,那麼就沒有正文;

l request是一個域物件,可以把它當成Map來新增獲取資料;

l request提供了請求轉發和請求包含功能。

2request域方法

request是域物件!在JavaWeb中一共四個域物件,其中ServletContext就是域物件,它在整個應用中只建立一個ServletContext物件。request其中一個,request可以在一個請求中共享資料。

一個請求會建立一個request物件,如果在一個請求中經歷了多個Servlet,那麼多個Servlet就可以使用request來共享資料。現在我們還不知道如何在一個請求中經歷之個Servlet,後面在學習請求轉發和請求包含後就知道了。

下面是request的域方法:


void setAttribute(String name, Object value):用來儲存一個物件,也可以稱之為儲存一個域屬性,例如:servletContext.setAttribute(“xxx”, “XXX”),在request中儲存了一個域屬性,域屬性名稱為xxx,域屬性的值為XXX。請注意,如果多次呼叫該方法,並且使用相同的name,那麼會覆蓋上一次的值,這一特性與Map相同;

l Object getAttribute(String name):用來獲取request中的資料,當前在獲取之前需要先去儲存才行,例如:String value = (String)request.getAttribute(“xxx”);,獲取名為xxx的域屬性;

l void removeAttribute(String name):用來移除request中的域屬性,如果引數name指定的域屬性不存在,那麼本方法什麼都不做;

l Enumeration getAttributeNames():獲取所有域屬性的名稱;

3request獲取請求頭資料

request與請求頭相關的方法有:

l String getHeader(String name):獲取指定名稱的請求頭;

l Enumeration getHeaderNames():獲取所有請求頭名稱;

l int getIntHeader(String name):獲取值為int型別的請求頭。

4request獲取請求相關的其它方法

request中還提供了與請求相關的其他方法,有些方法是為了我們更加便捷的方法請求頭資料而設計,有些是與請求URL相關的方法。

l int getContentLength():獲取請求體的位元組數,GET請求沒有請求體,沒有請求體返回-1;

l String getContentType():獲取請求型別,如果請求是GET,那麼這個方法返回null;如果是POST請求,那麼預設為application/x-www-form-urlencoded,表示請求體內容使用了URL編碼;

l String getMethod():返回請求方法,例如:GET

l Locale getLocale():返回當前客戶端瀏覽器的Locale。java.util.Locale表示國家和言語,這個東西在國際化中很有用;

l String getCharacterEncoding():獲取請求編碼,如果沒有setCharacterEncoding(),那麼返回null,表示使用ISO-8859-1編碼;

l void setCharacterEncoding(String code):設定請求編碼,只對請求體有效!注意,對於GET而言,沒有請求體!!!所以此方法只能對POST請求中的引數有效!

l String getContextPath():返回上下文路徑,例如:/hello

l String getQueryString():返回請求URL中的引數,例如:name=zhangSan

l String getRequestURI():返回請求URI路徑,例如:/hello/oneServlet

l StringBuffer getRequestURL():返回請求URL路徑,例如:http://localhost/hello/oneServlet,即返回除了引數以外的路徑資訊;

l String getServletPath():返回Servlet路徑,例如:/oneServlet

l String getRemoteAddr():返回當前客戶端的IP地址;

l String getRemoteHost():返回當前客戶端的主機名,但這個方法的實現還是獲取IP地址;

l String getScheme():返回請求協議,例如:http;

l String getServerName():返回主機名,例如:localhost

l int getServerPort():返回伺服器埠號,例如:8080

System.out.println("request.getContentLength(): " + request.getContentLength());

System.out.println("request.getContentType(): " + request.getContentType());

System.out.println("request.getContextPath(): " + request.getContextPath());

System.out.println("request.getMethod(): " + request.getMethod());

System.out.println("request.getLocale(): " + request.getLocale());

System.out.println("request.getQueryString(): " + request.getQueryString());

System.out.println("request.getRequestURI(): " + request.getRequestURI());

System.out.println("request.getRequestURL(): " + request.getRequestURL());

System.out.println("request.getServletPath(): " + request.getServletPath());

System.out.println("request.getRemoteAddr(): " + request.getRemoteAddr());

System.out.println("request.getRemoteHost(): " + request.getRemoteHost());

System.out.println("request.getRemotePort(): " + request.getRemotePort());

System.out.println("request.getScheme(): " + request.getScheme());

System.out.println("request.getServerName(): " + request.getServerName());

System.out.println("request.getServerPort(): " + request.getServerPort());

4.1 案例:request.getRemoteAddr():封IP

  可以使用request.getRemoteAddr()方法獲取客戶端的IP地址,然後判斷IP是否為禁用IP。

String ip = request.getRemoteAddr();

System.out.println(ip);

if(ip.equals("127.0.0.1")) {

response. getWriter().print("您的IP已被禁止!");

} else {

response.getWriter().print("Hello!");

}

5request獲取請求引數

最為常見的客戶端傳遞引數方式有兩種:

l 瀏覽器位址列直接輸入:一定是GET請求;

l 超連結:一定是GET請求;

l 表單:可以是GET,也可以是POST,這取決與<form>的method屬性值;

GET請求和POST請求的區別:

l GET請求:

Ø 請求引數會在瀏覽器的位址列中顯示,所以不安全;

Ø 請求引數長度限制長度在1K之內;

Ø GET請求沒有請求體,無法通過request.setCharacterEncoding()來設定引數的編碼;

l POST請求:

Ø 請求引數不會顯示瀏覽器的位址列,相對安全;

Ø 請求引數長度沒有限制;

    <a href="/hello/ParamServlet?p1=v1&p2=v2">超連結</a>

    <hr/>

    <form action="/hello/ParamServlet" method="post">

     引數1:<input type="text" name="p1"/><br/>

     引數2:<input type="text" name="p2"/><br/>

     <input type="submit" value="提交"/>

    </form>

下面是使用request獲取請求引數的API:

l String getParameter(String name):通過指定名稱獲取引數值;

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

String v1 = request.getParameter("p1");

String v2 = request.getParameter("p2");

System.out.println("p1=" + v1);

System.out.println("p2=" + v2);

}

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

String v1 = request.getParameter("p1");

String v2 = request.getParameter("p2");

System.out.println("p1=" + v1);

System.out.println("p2=" + v2);

}

l String[] getParameterValues(String name):當多個引數名稱相同時,可以使用方法來獲取;

<a href="/hello/ParamServlet?name=zhangSan&name=liSi">超連結</a>

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

String[] names = request.getParameterValues("name");

System.out.println(Arrays.toString(names));

}

l Enumeration getParameterNames():獲取所有引數的名字;

    <form action="/hello/ParamServlet" method="post">

     引數1:<input type="text" name="p1"/><br/>

     引數2:<input type="text" name="p2"/><br/>

     <input type="submit" value="提交"/>

    </form>

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

Enumeration names = request.getParameterNames();

while(names.hasMoreElements()) {

System.out.println(names.nextElement());

}

}

l Map getParameterMap():獲取所有引數封裝到Map中,其中key為引數名,value為引數值,因為一個引數名稱可能有多個值,所以引數值是String[],而不是String。

<a href="/day05_1/ParamServlet?p1=v1&p1=vv1&p2=v2&p2=vv2">超連結</a>

Map<String,String[]> paramMap = request.getParameterMap();

for(String name : paramMap.keySet()) {

String[] values = paramMap.get(name);

System.out.println(name + ": " + Arrays.toString(values));

}

p2: [v2, vv2]

p1: [v1, vv1]

6 請求轉發和請求包含

無論是請求轉發還是請求包含,都表示由多個Servlet共同來處理一個請求。例如Servlet1來處理請求,然後Servlet1又轉發給Servlet2來繼續處理這個請求。

6.1 請求轉發

在AServlet中,把請求轉發到BServlet:

public class AServlet extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

System.out.println("AServlet");

RequestDispatcher rd = request.getRequestDispatcher("/BServlet");

rd.forward(request, response);

}

}

public class BServlet extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

System.out.println("BServlet");

}

}

Aservlet

BServlet

6.2 請求包含

在AServlet中,把請求包含到BServlet:

public class AServlet extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

System.out.println("AServlet");

RequestDispatcher rd = request.getRequestDispatcher("/BServlet");

rd.include(request, response);

}

}

public class BServlet extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

System.out.println("BServlet");

}

}

Aservlet

BServlet

6.3 請求轉發與請求包含比較

l 如果在AServlet中請求轉發到BServlet,那麼在AServlet中就不允許再輸出響應體,即不能再使用response.getWriter()和response.getOutputStream()向客戶端輸出,這一工作應該由BServlet來完成;如果是使用請求包含,那麼沒有這個限制;

l 請求轉發雖然不能輸出響應體,但還是可以設定響應頭的,例如:response.setContentType(”text/html;charset=utf-8”);

l 請求包含大多是應用在JSP頁面中,完成多頁面的合併;

l 請求請求大多是應用在Servlet中,轉發目標大多是JSP頁面;

6.4 請求轉發與重定向比較

l 請求轉發是一個請求,而重定向是兩個請求;

l 請求轉發後瀏覽器位址列不會有變化,而重定向會有變化,因為重定向是兩個請求;

l 請求轉發的目標只能是本應用中的資源,重定向的目標可以是其他應用;

l 請求轉發對AServlet和BServlet的請求方法是相同的,即要麼都是GET,要麼都是POST,因為請求轉發是一個請求;

l 重定向的第二個請求一定是GET;