jsp request 用法介紹

來源:互聯網
上載者:User

設定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) 返回一虛擬路徑的真實路徑

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.