JSP內建對象:Request和Response的簡單介紹及使用_JSP編程

來源:互聯網
上載者:User

JSP內建對象之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) 返回一虛擬路徑的真實路徑
複製代碼 代碼如下:

< %@ page contentType="text/html;charset=gb2312"%>
< %request.setCharacterEncoding("gb2312");%>
< html>
< head>
< title>request對象_例1< /title>
< /head>
< body bgcolor="#FFFFF0">
< form action="" method="post">
< input type="text" name="qwe">
< input type="submit" value="提交">
< /form>
請求方式:< %=request.getMethod()%>< br>
請求的資源:< %=request.getRequestURI()%>< br>
請求用的協議:< %=request.getProtocol()%>< br>
請求的檔案名稱:< %=request.getServletPath()%>< br>
請求的伺服器的IP:< %=request.getServerName()%>< br>
請求伺服器的連接埠:< %=request.getServerPort()%>< br>
用戶端IP地址:< %=request.getRemoteAddr()%>< br>
用戶端主機名稱:< %=request.getRemoteHost()%>< br>
表單提交來的值:< %=request.getParameter("qwe")%>< br>
< /body>
< /html>  
< %@ page contentType="text/html;charset=gb2312"%>
< %request.setCharacterEncoding("gb2312");%>
< %@ page import="java.util.Enumeration"%>
< html>
< head>
< title>request對象_例2< /title>
< /head>
< body bgcolor="#FFFFF0">
< form action="" method="post">
使用者名稱:< input type="text" name="username">   
密 碼:< input type="text" name="userpass">   
< input type="submit" value="進入" >
< /form>
< % 
String str=""; 
if(request.getParameter("username")!=null && request.getParameter("userpass")!=null){ 
Enumeration enumt = request.getParameterNames(); 
while(enumt.hasMoreElements()){ 
str=enumt.nextElement().toString(); 
out.println(str ":" request.getParameter(str) "< br>"); 


%>
< /body>
< /html>  
< %@ page contentType="text/html;charset=gb2312"%>
< %request.setCharacterEncoding("gb2312");%>
< html>
< head>
< title>request對象_例3< /title>
< /head>
< body bgcolor="#FFFFF0">
< form action="" method="post">
擅長:< input type="checkbox" name="cb" value="ON1">VC   
< input type="checkbox" name="cb" value="ON2">JAVA  
< input type="checkbox" name="cb" value="ON3">DELPHI  
< input type="checkbox" name="cb" value="ON4">VB  
< br>
< input type="submit" value="進入" name="qwe">
< /form>
< % 
if(request.getParameter("qwe")!=null ){ 
for(int i=0;i< request.getParameterValues("cb").length;i ){ 
out.println("cb" i ":" request.getParameterValues("cb")[i] "< br>"); 

out.println(request.getParameter("qwe")); 

%>
< /body>
< /html>

JSP內建對象之response對象
response對象包含了響應客戶請求的有關資訊,但在JSP中很少直接用到它。它是HttpServletResponse類的執行個體。
序號 方 法 說 明
1 String getCharacterEncoding() 返迴響應用的是何種字元編碼
2 ServletOutputStream getOutputStream() 返迴響應的一個二進位輸出資料流
3 PrintWriter getWriter() 返回可以向用戶端輸出字元的一個對象
4 void setContentLength(int len) 設定回應標頭長度
5 void setContentType(String type) 設定響應的MIME類型
6 sendRedirect(java.lang.String location) 重新定向用戶端的請求
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.