解决struts+hibernate+mysql乱码问题

出处:http://student.csdn.net/space.php?uid=41855&do=blog&id=7210

项目原因,需要struts+hibernate+mysql

相信大家经常遇到这样的问题:

          struts+hibernate+mysql 其中全部是utf—8编码,而且也配置了filter ,其中也为utf-8,但在插入和读取中文数据时仍然是乱码!

解决方法:

           呵呵,调试一上午,终于解决问题,配置处理个小问题,就是没有在jdbc后面加上“?useUnicode=true&characterEncoding=UTF-8 ”
,这样的话导致插入数据库的数据时乱码,但查询出来显示在页面上的不是乱码,下面将我的详细步骤写给大家,以供参考:

第一步、创建数据库的表,我使用的界面操作是SQL Manager for MySQL,将MySQL的编码设置为utf8,步骤在建库是:CREATE DATABASE `xxx`
     CHARACTER SET 'utf8'
     COLLATE 'utf8_bin';。

第二步、创建字符过滤器 SetCharacterEncodingFilter.java 内容如下:

package filter;
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 SetCharacterEncodingFilter implements Filter {

protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;

public void destroy() {

this.encoding = null;
this.filterConfig = null;

}

public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {

// Conditionally select and set the character encoding to be used
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}

// Pass control on to the next filter
chain.doFilter(request, response);

}

public void init(FilterConfig filterConfig) throws ServletException {

this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null)
this.ignore = true;
else if (value.equalsIgnoreCase("true"))
this.ignore = true;
else if (value.equalsIgnoreCase("yes"))
this.ignore = true;
else
this.ignore = false;

}

protected String selectEncoding(ServletRequest request) {

return (this.encoding);

}
}

第三步、配置web.xml   , 在web.xml中加入如下代码:


SetCharsetEncodingFilter
filter.SetCharacterEncodingFilter

encoding
utf-8




SetCharsetEncodingFilter
/*


第四步、配置hibernate.cfg.xml文件,在文件中找到下面的代码



jdbc:mysql://192.168.1.61:3306/ytxiu?useUnicode=true&characterEncoding=UTF-8

添加蓝色的代码,一定要添加,否则插入到库中为乱码,但显示出来到页面的是中文,为了参照数据库数据阅读方便,大家还是依次来做吧!

第五步、设置测试页面test.jsp,将页面的编码格式设置如下:
<%@ page language="java" pageEncoding="utf-8"%>

菊子曰 本文用 菊子曰发布
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值