- 讲师:刘萍萍 / 谢楠
- 课时:160h
- 价格 4580 元
特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关
配套通关班送国网在线题库一套
百度广告
四、response 对象
response 对象是实现javax.servlet.http.HttpServletResponse 接口。response对象所提供的方法。
void addCookie(Cookie cookie) 新增cookie
void addHeader(String name, String value) 新增String类型的值到name标头
void setDateHeader(String name, long date) 指定long类型的值到name标头
void setIntHeader(String name, int value) 指定int类型的值到name标头
void sendError(int sc) 传送状态码(status code)
void setStatus(int sc) 设定状态码
String encodeRedirectURL(String url) 对使用sendRedirect( )方法的URL予以编码
五、out 对象
out主要是用来控制管理输出的缓冲区(buffer)和输出流(output stream)。
void clearBuffer( ) 清除输出缓冲区的内容
int getBufferSize( ) 取得目前缓冲区的大小(KB)
boolean isAutoFlush( ) 回传true表示缓冲区满时会自动清除;false表示不会自动清除并且产生异常处理
六、session 对象
session对象实现javax.servlet.http.HttpSession接口,HttpSession接口所提供的方法
String getId() 取得session 的ID
long getMaxInactiveInterval() 取得最大session不活动的时间,若超过这时间,session 将会失效
boolean isNew() 判断session 是否为"新"的
七、application对象
因为环境的信息通常都储存在ServletContext中,所以常利用application对象来存取ServletContext中的信息。
int getMajorVersion( ) 取得Container主要的Servlet API版本
String getServerInfo( ) 取得Container的名称和版本
ServletContext getContext(String uripath) 取得指定Local URL的Application context
void log(String message) 将信息写入log文件中
八、pageContext对象
1.pageContext对象存取其他隐含对象属性的方法,此时需要指定范围的参数。
Enumeration getAttributeNamesInScope(int scope)
void setAttribute(String name, Object value, int scope)
2.PageContext对象取得其他隐含对象的方法
JspWriter getOut( ) 回传目前网页的输出流,例如:out
ServletRequest getRequest( ) 回传目前网页的请求,例如:request
ServletConfig getServletConfig( ) 回传目前此网页的ServletConfig 对象,例如:config
HttpSession getSession( ) 回传和目前网页有联系的会话(session),例如:session
Object getAttribute(String name, int scope) 回传name 属性,范围为scope的属性对象,回传类型为Object
int getAttributesScope(String name) 回传属性名称为name 的属性范围
void removeAttribute(String name, int scope) 移除属性名称为name,范围为scope 的属性对象
Object findAttribute(String name) 寻找在所有范围中属性名称为name 的属性对象
九、exception对象
exception提供的三个方法:
getLocalizedMessage( )、
责编:罗莉
课程专业名称 |
讲师 |
课时 |
查看课程 |
---|
课程专业名称 |
讲师 |
课时 |
查看课程 |
---|
点击加载更多评论>>