JSP內置對象:Request和Response的簡單介紹及使用_JSP教程
推薦:JSP自定義標簽Taglib實現過程重點總結Taglib指令,其實就是定義一個標簽庫以及自定義標簽的前綴,其中的具體的實現方式,我們不過多介紹,我們給大家從宏觀的角度以及解決其中的疑難點,感興趣的朋友可以了解下,或許對你學習jsp有所幫助
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) 返回一虛擬路徑的真實路徑
復制代碼 代碼如下:www.wf0088.com
< %@ 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.}
}
%>
< /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) 重新定向客戶端的請求
分享:jsp include引用非本級目錄網頁實現代碼include的出現方便了文件之間的引用,降低了開發難度.它的常用法是引用同級目錄,本文主要介紹引用非本級目錄網頁,如果沒有遇到這樣情況下引用的朋友可以參考下,或許本文對你有所幫助
相關JSP教程:
- jsp response.sendRedirect不跳轉的原因分析及解決
- JSP指令元素(page指令/include指令/taglib指令)復習整理
- JSP腳本元素和注釋復習總結示例
- JSP FusionCharts Free顯示圖表 具體實現
- 網頁模板:關于jsp頁面使用jstl的異常分析
- JSP頁面中文傳遞參數使用escape編碼
- 基于jsp:included的使用與jsp:param亂碼的解決方法
- Java Web項目中連接Access數據庫的配置方法
- JDBC連接Access數據庫的幾種方式介紹
- 網站圖片路徑的問題:絕對路徑/虛擬路徑
- (jsp/html)網頁上嵌入播放器(常用播放器代碼整理)
- jsp下顯示中文文件名及絕對路徑下的圖片解決方法
- 相關鏈接:
- 教程說明:
JSP教程-JSP內置對象:Request和Response的簡單介紹及使用。