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

response的编码

时间:2017-06-09 17:22:23      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:type   int   修改   eps   html   get   tco   size   odi   

编码2

响应的编码:

通过response对象来完成

1. 例如:response.getWriter().printer("丢丢");上面代码因为没有设置repsonse.getWriter()字符流的编码,所以服务器使用默认的编码(ISO-8859-1)来处理,因为ISO-8859-1不支持中文,所以一定会出现乱码的。

 

所以在使用response.getWriter()发送数据之前,一定要设置response.getWriter()的编码,这需要使用response.setCharacterEncoding()方法设置服务器的编码方式,

 

response.setCharacterEncoding(“utf-8”);

 

response.getWriter().print(“丢丢”);

 

2.但是我们不同让用户每次自己去设置编码,所以我们要设置响应头:content-type

response. setContentType("text/html;charset=utf-8");

ps:在静态页面中,一般可以直接修改contentType

上面代码使用setContentType()方法设置了响应头content-type编码为utf-8,这不只是在响应中添加了响应头,

还等于调用了一次response.setCharacterEncoding(“utf-8”),也就是说,通过我们只需要调用一次response.setContentType(“text/html;charset=utf-8”)即可,而无需再去调用response.setCharacterEncoding(“utf-8”)了。

 

 

response的编码

标签:type   int   修改   eps   html   get   tco   size   odi   

原文地址:http://www.cnblogs.com/LFFBlog/p/6972662.html

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