美文网首页
response对象

response对象

作者: 27b0bd2612de | 来源:发表于2017-06-27 15:01 被阅读0次

    response对象

    response对象包含了相应客户请求的有关信息,但是在jsp中很少直接用到它。它是HttpServeletResponse类的实例。response对象具有页面作用域,即访问一个页面时,该页面内的response对象只能对这次访问有效,其他页面的response对象对当前页面无效.

    常用方法:

    1. String getCharacterEncoding() 返回响应用的是何种字符编码

    2.void setContextType(String type) 设置相应的MIME类型

    3.PrintWriter getWriter() 返回可以向客户端输出字符的一个对象(注意比较:PrintWriter和内置out对象的区别,PrintWriter打印总是在out前面,即使out的打印代码在PrintWriter之前,想要解决这个问题,在out输出后面使用out.flush()强制清空缓存区,把out输出到浏览器)

    4.sendRedircter(java.lang.String location)重新定向客户端的请求.

    相关文章

      网友评论

          本文标题:response对象

          本文链接:https://www.haomeiwen.com/subject/zbmjcxtx.html