博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JSP开发过程遇到的中文乱码问题及解决方案
阅读量:5986 次
发布时间:2019-06-20

本文共 3072 字,大约阅读时间需要 10 分钟。

  hot3.png

1.数据库编码不一致导致乱码

解决方法: 首先查看数据库编码,输入:
show variables like "%char%";
开发过程遇到的中文乱码问题 确认编码一致,如果不一致,可输入:
SET character_set_client='utf8';SET character_set_connection='utf8';SET character_set_results='utf8';
也可设置成gbk编码; 也可以在安装Mysql目录下修改my.ini文件
default-character-set=utf-8

2.jsp页面乱码问题

在myeclipse中jsp的默认编码为ISO-8859-8; 只需在页面头部修改为
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
在JSP页面头部加入下面这句话,告诉浏览器应该调用UTF-8的字符集。

3.jsp连接数据库存入中文乱码

在数据库连接时
jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
如果使用框架连接则把头文件都修改成UTF-8编码即可

4.在使用struts2可使用过滤器:

先变写一个过滤器
package com.oumyye.util;import java.io.IOException;import javax.servlet.Filter;import javax.servlet.FilterChain;import javax.servlet.FilterConfig;import javax.servlet.ServletException;import javax.servlet.ServletRequest;import javax.servlet.ServletResponse;public class CharacterEncodingFilter implements Filter{    protected String encoding = null;    protected FilterConfig filterConfig = null;    public void init(FilterConfig filterConfig) throws ServletException {        this.filterConfig = filterConfig;        this.encoding = filterConfig.getInitParameter("encoding");    }    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {        if (encoding != null) {            request.setCharacterEncoding(encoding);            response.setContentType("text/html; charset="+encoding);        }        chain.doFilter(request, response);    }    public void destroy() {        this.encoding = null;        this.filterConfig = null;    }}
在web.xml中配置
0001web
CharacterEncodingFilter
com.oumyye.util.CharacterEncodingFilter
encoding
UTF-8
CharacterEncodingFilter
/*
REQUEST
FORWARD
在表单中只能使用post传值,此方法对于get无效。

5 处理单个字符串的中文乱码问题

String newname=new String(name.getBytes("iso-8859-1"),"utf-8"))
附:JSP中的编码设置
1. pageEncoding:<%@ page pageEncoding=“UTF-8″%> 设置JSP编译成Servlet时使用的编码 2. contentType: <%@ page contentType=“text/html; charset=UTF-8″%> 对服务器响应进行重新编码,即jsp的输出流在浏览器中显示的编码 3. html页面charset:<META http-equiv=“Content-Type” content=“text/html; charset=UTF-8″> 网页的编码信息 ,说明页面制作所使用的编码 4. request.setCharacterEncoding()  — 可用在servlet和jsp页面中 作用是设置对客户端请求进行重新编码的编码,即post方式提交的数据进行编码。 5. response.setCharacterEncoding() — 可用在servlet和jsp页面中 对服务器响应进行重新编码,即jsp的输出流在浏览器中显示的编码,与<%@ page contentType=“text/html;charset=UTF-8″%>一样 6. response.setContentType() — 可用在servlet和jsp页面中 对服务器响应进行重新编码,即jsp的输出流在浏览器中显示的编码,与<%@ page contentType=“text/html;charset=UTF-8″%>一样 7.response.setHeader(“Content-Type”,”text/html;charset=UTF-8″);   — 可用在servlet和jsp页面中 与<META http-equiv=“Content-Type” content=“text/html; charset=UTF-8″>一样 转载自www.codeceo.com

转载于:https://my.oschina.net/ecp/blog/635384

你可能感兴趣的文章
[译] 学习 Spring Security(五):重发验证邮件
查看>>
快速的React Native开发方法
查看>>
1.扩展方法2.接口的隐式实现和显式实现
查看>>
xcache 源码包编译安装
查看>>
前端开发思考与实践
查看>>
tcp/ip参数控制
查看>>
[分享]iOS开发-UIView顺时针旋转、逆时针旋转
查看>>
Conversion to Dalvik format failed with error 1的又一种情形
查看>>
Citrix VDI实战攻略之八:测试验收
查看>>
windows下安装memcached
查看>>
Java读取properties文件的思考
查看>>
分秒必争域的时间同步问题[为企业部署Windows Server 2008系列十四]
查看>>
《Storm分布式实时计算模式》——2.4 把toplogy提交到集群中
查看>>
防盗功能!Windows Phone 安全特性更上一层楼
查看>>
《Linux命令行大全》——第2章 导 航 2.1 理解文件系统树
查看>>
戴文的Linux内核专题:25 配置内核 (21)
查看>>
《Android游戏开发详解》一2.6 构建一个简单的计算器程序
查看>>
深入实践Spring Boot3.2.3 修改控制器
查看>>
《PHP、MySQL和Apache入门经典(第5版)》一一1.4 在Mac OS X上安装XAMPP
查看>>
《树莓派用户指南(第3版)》——1.2 Model A
查看>>