object getAttribute(String name);// 返回指定属性的属性值
Enumeration getAttributeNames();// 返回所有可用属性名的枚举
String getCharacterEncoding();// 返回字符编码方式
String getParameter(String name);// 返回name指定参数的参数值
String[] getParameterValues(String name);// 返回包含参数name的所有值的数组
String getServerName();// 返回接受请求的服务器主机名
int getServerPort();// 返回服务器接受此请求所用的端口号
String getRemoteAddr();// 返回发送此请求的客户端IP地址
String getRemoteHost();// 返回发送此请求的客户端主机名
void setAttribute(String key,Object obj);// 设置属性的属性值
String getRealPath(String path) 返回一虚拟路径的真实路径
Enumeration getParameterNames();// 返回可用参数名的枚举
int getContentLength();// 返回请求体的长度(以字节数)
String getContentType() ;//得到请求体的MIME类型
ServletInputStream getInputStream();// 得到请求体中一行的二进制流
String getProtocol();// 返回请求用的协议类型及版本号
String getScheme();// 返回请求用的计划名,如:http.https及ftp等
BufferedReader getReader();// 返回解码过了的请求体
int getMaxInactiveInterval();// 返回两次请求间隔多长时间此SESSION被取消(ms)
String[] getValueNames();// 返回一个包含此SESSION中所有可用属性的数组
void invalidate();// 取消SESSION,使SESSION不可用
boolean isNew();// 返回服务器创建的一个SESSION,客户端是否已经加入
void removeValue(String name);// 删除SESSION中指定的属性
void setMaxInactiveInterval();// 设置两次请求间隔多长时间此SESSION被取消(ms)
long getCreationTime();// 返回SESSION创建时间
public String getId();// 返回SESSION创建时JSP引擎为它设的惟一ID号
long getLastAccessedTime();// 返回此SESSION里客户端最近一次请求时间
sendRedirect(java.lang.String location);// 重新定向客户端的请求
String getCharacterEncoding();// 返回响应用的是何种字符编码
ServletOutputStream getOutputStream();// 返回响应的一个二进制输出流
PrintWriter getWriter();// 返回可以向客户端输出字符的一个对象
void setContentLength(int len);// 设置响应头长度
void setContentType(String type);// 设置响应的MIME类型
Object getAttribute(String name);// 返回给定名的属性值
Enumeration getAttributeNames();// 返回所有可用属性名的枚举
void setAttribute(String name,Object obj);// 设定属性的属性值
void removeAttribute(String name);// 删除一属性及其属性值
String getServerInfo();// 返回JSP(SERVLET)引擎名及版本号
String getRealPath(String path);// 返回一虚拟路径的真实路径
void forward(String relativeUrlPath);// 使当前页面重导到另一页面
HttpSession getSession();// 返回当前页中的HttpSession对象(session)
Object getPage();// 返回当前页的Object对象(page)
ServletRequest getRequest();// 返回当前页的ServletRequest对象(request)
ServletResponse getResponse();// 返回当前页的ServletResponse对象(response)
Exception getException();// 返回当前页的Exception对象(exception)
ServletConfig getServletConfig();// 返回当前页的ServletConfig对象(config)
ServletContext getServletContext();// 返回当前页的ServletContext对象(application)
void setAttribute(String name,Object attribute);// 设置属性及属性值
void setAttribute(String name,Object obj,int scope);// 在指定范围内设置属性及属性值
public Object getAttribute(String name);// 取属性的值
Object getAttribute(String name,int scope);// 在指定范围内取属性的值
public Object findAttribute(String name);// 寻找一属性,返回起属性值或NULL
void removeAttribute(String name);// 删除某属性
void removeAttribute(String name,int scope);// 在指定范围删除某属性
int getAttributeScope(String name);// 返回某属性的作用范围
Enumeration getAttributeNamesInScope(int scope);// 返回指定范围内可用的属性名枚举
void release();// 释放pageContext所占用的资源
void include(String relativeUrlPath);// 在当前位置包含另一文件
JspWriter getOut();// 返回当前客户端响应被使用的JspWriter流(out)
String getMessage();// 返回描述异常的消息 String toString();// 返回关于异常的简短描述消息
void clear();// 清除缓冲区的内容 void clearBuffer();// 清除缓冲区的当前内容 void flush();// 清空流