設定request屬性範圍 request_scope_01.jsp
代碼如下 |
複製代碼 |
<%@ page language="java" contentType="text/html" pageEncoding="GBK"%> <%@ page import="java.util.*" %> <html> <head> <title>測試</title> </head> <body> <% request.setAttribute("name","小明"); request.setAttribute("birthday",new Date()); %> <jsp:forward page="request_scope_02.jsp"/>//如果換成超連結就不能取得request屬性 </body> </html> 跳轉後的頁面 :request_scope_02.jsp <%@ page language="java" contentType="text/html" pageEncoding="GBK"%> <%@ page import="java.util.*" %> <html> <head> <title>測試</title> </head> <body> <% String name=(String)request.getAttribute("name"); Date birthday=(Date)request.getAttribute("birthday"); %> <h1><%=name%></h1> <h2><%=birthday%></h2> </body> </html> |
request對象
用戶端的請求資訊被封裝在request對象中,通過它才能瞭解到客戶的需求,然後做出響應。它是HttpServletRequest類的執行個體。
序號 方 法 說 明
1 object getAttribute(String name) 返回指定屬性的屬性值
2 Enumeration getAttributeNames() 返回所有可用屬性名稱的枚舉
3 String getCharacterEncoding() 返回字元編碼方式
4 int getContentLength() 返回請求體的長度(以位元組數)
5 String getContentType() 得到請求體的MIME類型
6 ServletInputStream getInputStream() 得到請求體中一行的二進位流
7 String getParameter(String name) 返回name指定參數的參數值
8 Enumeration getParameterNames() 返回可用參數名的枚舉
9 String[] getParameterValues(String name) 返回包含參數name的所有值的數組
10 String getProtocol() 返回請求用的協議類型及版本號碼
11 String getScheme() 返回請求用的計劃名,如:http.https及ftp等
12 String getServerName() 返回接受請求的伺服器主機名稱
13 int getServerPort() 返回伺服器接受此請求所用的連接埠號碼
14 BufferedReader getReader() 返回解碼過了的請求體
15 String getRemoteAddr() 返回傳送此請求的用戶端IP地址
16 String getRemoteHost() 返回傳送此請求的用戶端主機名稱
17 void setAttribute(String key,Object obj) 設定屬性的屬性值
18 String getRealPath(String path) 返回一虛擬路徑的真實路徑