【JavaWeb】學習筆記五 JSP內建對象(上)

來源:互聯網
上載者:User

標籤:

1.常用的JSP內建對象

 

2.out對象

out對象是JspWriter類的執行個體,是向用戶端輸出內容常用的對象

編號 方法 說明
1 void clear() 清除緩衝區的內容
2 void clearBuffer() 清除緩衝區的當前內容
3 void flush() 清空流
4 int getBufferSize() 返回緩衝區以位元組數的大小,如不設緩衝區則為0
5 int getRemaining() 返回緩衝區還剩餘多少可用
6 boolean isAutoFlush() 返回緩衝區滿時,是自動清空還是拋出異常
7 void close() 關閉輸出資料流  
8 void println() 向用戶端列印字串

 

3.get&post方法的區別

 

4.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 int getServerPort() 返回伺服器接受此請求所用的連接埠號碼
13 String getServerName() 返回接受請求的伺服器主機名稱
14 BufferedReader getReader() 返回解碼過了的請求體
15 String getRemoteAddr() 返回傳送此請求的用戶端IP地址
16 String getRemoteHost() 返回傳送此請求的用戶端主機名稱
17 void setAttribute(String key Object obj) 設定屬性的屬性值
18 String getRealPath(String path) 返回一虛擬路徑的真實路徑
19 void setCharacterEncoding("gb2312") 設定接受參數的字元集

 

 

【JavaWeb】學習筆記五 JSP內建對象(上)

相關文章

聯繫我們

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