码迷,mamicode.com
首页 > 其他好文 > 详细

【J2EE】 关于response对象

时间:2017-07-15 19:46:08      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:tput   enc   baidu   end   tty   etc   exception   har   coding   

两种响应流

  1.response.getWriter()  //字符流

    >默认为iso-8859-1,setCharactorEncoding("utf-8") \ setContentType("text/html;charset=utf-8") //此方法会调用setCharactorEncoding并设置响应头的contentType

    

    

  2.response.getOutputStrem()  //字节流

    注:response只能响应一种流,如同时使用 会抛出IIIegalStateException

设置响应头

  response.setHeader("content-type","text/html;charset=uft-8")

  response.setHeader("Refresh","5; URL=http://www.baidu.cn")  //5秒后跳转到指定网址

设置状态码

  response.setStatus(404)  

 

重定向的两种写法:

  1.

    response.setStatus(302)  //(302是重定向的状态码)

    response.setHeader("Location", "url");  // 设置url

  2.

    response.sendRedired(url)

  

  

 

 

 

 

  

 

【J2EE】 关于response对象

标签:tput   enc   baidu   end   tty   etc   exception   har   coding   

原文地址:http://www.cnblogs.com/LightChan/p/7183888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!