一
page對象代表JSP本身
二
config 對象裡存放著一些Servlet 初始的數據結構
config 對象實現於javax
public String getInitParameter(name)
public java
public ServletContext getServletContext( )
public Sring getServletName( ) 三
request 對象包含所有請求的信息
request 對象實現javax
void setAttribute(String name
Enumeration getAttributeNamesInScope(int scope) 取得所有scope 范圍的屬性
Object getAttribute(String name) 取得name 屬性的值
void removeAttribute(String name) 移除name 屬性的值
String getParameter(String name) 取得name 的參數值
Enumeration getParameterNames( ) 取得所有的參數名稱
String [] getParameterValues(String name) 取得所有name 的參數值
Map getParameterMap( ) 取得一個要求參數的Map
String getHeader(String name) 取得name 的標頭
Enumeration getHeaderNames() 取得所有的標頭名稱
Enumeration getHeaders(String name) 取得所有name 的標頭
int getIntHeader(String name) 取得整數類型name 的標頭
long getDateHeader(String name) 取得日期類型name 的標頭
Cookie [] getCookies( ) 取得與請求有關的cookies
String getContextPath( ) 取得Context 路徑(即站台名稱)
String getMethod( ) 取得HTTP 的方法(GET
String getProtocol( ) 取得使用的協議 (HTTP/
String getQueryString( ) 取得請求的參數字符串
String getRequestedSessionId( ) 取得用戶端的Session ID
String getRequestURI( ) 取得請求的URL
String getRemoteAddr( ) 取得用戶的IP 地址
String getRemoteHost( ) 取得用戶的主機名稱
int getRemotePort( ) 取得用戶的主機端口
String getRemoteUser( ) 取得用戶的名稱
void etCharacterEncoding(String encoding) 設定編碼格式
[
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20718.html