八
pageContext對象能夠存取其他隱含對象
Object getAttribute(String name
Enumeration getAttributeNamesInScope(int scope)
void removeAttribute(String name
void setAttribute(String name
范圍參數有四個
Exception getException( ) 回傳目前網頁的異常
JspWriter getOut( ) 回傳目前網頁的輸出流
Object getPage( ) 回傳目前網頁的Servlet 實體(instance)
ServletRequest getRequest( ) 回傳目前網頁的請求
ServletResponse getResponse( ) 回傳目前網頁的響應
ServletConfig getServletConfig( ) 回傳目前此網頁的ServletConfig 對象
ServletContext getServletContext( ) 回傳目前此網頁的執行環境(context)
HttpSession getSession( ) 回傳和目前網頁有聯系的會話(session)
Object getAttribute(String name
Enumeration getAttributeNamesInScope(int scope) 回傳所有屬性范圍為scope 的屬性名稱
int getAttributesScope(String name) 回傳屬性名稱為name 的屬性范圍
void removeAttribute(String name) 移除屬性名稱為name 的屬性對象
void removeAttribute(String name
void setAttribute(String name
Object findAttribute(String name) 尋找在所有范圍中屬性名稱為name 的屬性對象
九
若要使用exception 對象時
exception提供的三個方法
getMessage( )
getLocalizedMessage( )
printStackTrace(new java
[
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20720.html