欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

Java Servlet输出中文乱码问题解决方案

时间:2022-11-23 09:43:03|栏目:JAVA代码|点击:

1.现象:字节流向浏览器输出中文,可能会乱码(IE低版本)

private void byteMethod(HttpServletResponse response) throws IOException, UnsupportedEncodingException {
    String date = "你好";
    ServletOutputStream outputStream = response.getOutputStream();
    outputStream.write(date.getBytes();
  }

原因:服务器端和浏览器端的编码格式不一致。

解决方法:服务器端和浏览器端的编码格式保持一致

private void byteMethod(HttpServletResponse response) throws IOException, UnsupportedEncodingException {
    String date = "你好";
    ServletOutputStream outputStream = response.getOutputStream();
    // 浏览器端的编码
    response.setHeader("Content-Type", "text/html;charset=utf-8");
    // 服务器端的编码
    outputStream.write(date.getBytes("utf-8"));
  }

或者简写如下

private void byteMethod(HttpServletResponse response) throws IOException, UnsupportedEncodingException {
    String date = "你好";
    ServletOutputStream outputStream = response.getOutputStream();
    // 浏览器端的编码
    response.setContentType("text/html;charset=utf-8");
    // 服务器端的编码
    outputStream.write(date.getBytes("utf-8"));
  }

2.现象:字符流向浏览器输出中文出现 ???乱码

private void charMethod(HttpServletResponse response) throws IOException {
    String date = "你好";
    PrintWriter writer = response.getWriter();
    writer.write(date);
  }

原因:表示采用ISO-8859-1编码形式,该编码不支持中文

解决办法:同样使浏览器和服务器编码保持一致

private void charMethod(HttpServletResponse response) throws IOException {
    // 处理服务器编码
     response.setCharacterEncoding("utf-8");
    // 处理浏览器编码
     response.setHeader("Content-Type", "text/html;charset=utf-8");
    String date = "中国";
    PrintWriter writer = response.getWriter();
    writer.write(date);
  }

注意!setCharacterEncoding()方法要在写入之前使用,否则无效!!!

或者简写如下

private void charMethod(HttpServletResponse response) throws IOException {
    response.setContentType("text/html;charset=GB18030");
    String date = "中国";
    PrintWriter writer = response.getWriter();
    writer.write(date);
  }

总结:解决中文乱码问题使用方法 response.setContentType("text/html;charset=utf-8");可解决字符和字节的问题。

上一篇:MybatisPlus自带的queryWrapper实现时间倒序方式

栏    目:JAVA代码

下一篇:IDEA Maven 配置备忘笔记

本文标题:Java Servlet输出中文乱码问题解决方案

本文地址:http://www.codeinn.net/misctech/219671.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有