标签:servlet 乱码
//编码和解码一致就不会造成乱码,浏览器默认的是当前系统的默认字符编码,因此解码的时候会查gbk
一.字节输出流乱码解决
1.字节输出流getOutputStream().write();
package com.itheima; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; //编码和解码一致就不会造成乱码,浏览器默认的是当前系统的默认字符编码,因此解码的时候会查gbk public class Demo6Servlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.getOutputStream().write("中国".getBytes());//查看String类的getBytes方法可以看到使用的是当前系统默认的编码进行解码即当前是gbk } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }会乱码么?答案:
不会乱码,因为getBytes编码的时候会查gbk,浏览器解码的时候会使用gbk.因此不会乱码!
2.如果指定编码
response.getOutputStream().write("中国".getBytes("utf-8"))
解决方式:
告知浏览器使用utf-8编码进行解码:
使用//通知浏览器使用utf-8解码
response.setHeader("Content-Type", "text/html;charset=utf-8");
标签:servlet 乱码
原文地址:http://blog.csdn.net/u014010769/article/details/46531907