request功能:
1. 獲取請求訊息資料
1. 獲取請求行資料
* 方法:
1. 獲取請求方式 :get
* string getmethod()
2. (*)獲取虛擬目錄:/day14
* string getcontextpath()
3. 獲取servlet路徑: /demo1
* string getservletpath()
4. 獲取get方式請求引數:name=zhangsan
* string getquerystring()
5. (*)獲取請求uri:/day14/demo1
* url:統一資源定位符 : http://localhost/day14/demo1 中華人民共和國
* uri:統一資源識別符號 : /day14/demo1 共和國
6. 獲取協議及版本:http/1.1
* string getprotocol()
Request獲取請求資料
request獲取請求頭的方式 方式1 string headvalue request.getheader 要共取頭的名字 方式2 enumeration e request.getheaders 要共取頭的名字 while e.hasmoreelements 獲取請求頭的名稱 enumerati...
網路資料請求request
2.基於httpwebrequest 的get post方法 關於網路資料請求的類很多,httpwebrequest,webrequest,webclient以及httpclient,具體差別在此不在贅述,在應用方面介紹webclient與httpclient則顯得比較比較簡單粗暴,httpwebr...
獲取Request請求的路徑資訊
從request物件中可以獲取各種路徑資訊,以下例子 假設請求的頁面是index.jsp,專案是webdemo,則在index.jsp中獲取有關request物件的各種路徑資訊如下 string path request.getcontextpath string basepath request....