Jsp Mysql乱码问题解决方案

 
最近开发项目是又出现乱码问题,从前台jsp到后台数据库全面检查,终于搞定,下面分享一下吧,虽然网上有很多,但是我觉得我这个还是比较全面彻底的。
首先看是从什么地方开始出现的乱码,只要统一编码,就不会出现乱码,下面以uft-8(个人认为最好)为例,详细说明
 1、如果乱码是从jsp页面出现的,jsp头部页面加上:
<%@ page language="java"  pageEncoding="UTF-8" %>
在head标签中加上<meta>标签:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2、如果乱码是在servlet中出现的,则有两种方法:
一种是在每个servlet中doget和doPost方法头部加上
request.setCharacterEncoding("UTF-8");
第二种最保险,一劳永逸,是专门写一个过滤器类,也称国际化,类名为SetCharacterEncodingFilter内容如下

package com.sharep.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 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
   this.ignore = false;
 }
 public void doFilter(ServletRequest request, ServletResponse response,
   FilterChain chain) throws IOException, ServletException
 {
  
  if (ignore || (request.getCharacterEncoding() == null))
  {
   String encoding = selectEncoding(request);
   if (encoding != null)
    request.setCharacterEncoding(encoding);
  }
  chain.doFilter(request, response);
 }
 public void destroy()
 {
  this.encoding = null;
  this.filterConfig = null;
 }
 protected String selectEncoding(ServletRequest request)
 {
  return (this.encoding);
 }
}

然后在web-inf的web.xml中加上如下代码:
<filter>
  <filter-name>SetCharacterEncoding</filter-name>
  <filter-class>com.young.filter.SetCharacterEncodingFilter</filter-class>//注意这里是类名,要有完整包名
  <init-param>
   <param-name>encoding</param-name>
   <param-value>UTF-8</param-value>
  </init-param>
 </filter>
 
 <filter-mapping>
  <filter-name>SetCharacterEncoding</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>
这样就搞定了
3、如果还是有乱码,就是mysql数据库的问题了
1)保证建立数据库的时候数据库编码选择的是utf-8,最好在每个表中也指定编码格式,mysql默认是latin1
2)如果mysql版本是4.x以上,数据库中还是出现乱码,有以下两种解决方法:
一种是在连接数据库的代码中指定编码方式:
 
 Class.forName("com.mysql.jdbc.Driver");//数据库驱动不同,这里可能也不同
                user = "";//一般是root
                password = "";//相应密码
                url = "jdbc:mysql://localhost:3306/dbname?autoReconnect=true&useUnicode=true&characterEncoding=utf8";//注意这里是utf8,而不是utf-8,
                con = DriverManager.getConnection(url, user, password);

第一种方式影响一个数据库,且数据库以后移植到其他地方还能用,至于用数据库连接池,方法差不多,就是用url那一部分了
 
第二种方法将影响整个mysq中的所有应用,方法如下:
在mysql安装目录中有个my.ini(或my.cfg)文件,找到
default-character-set=latin1
改为
default-character-set=utf8
就可以了,或者运行mysql的可视化配置向导来弄。
当然对于乱码问题肯定还有其他方法,希望我的方法能给大家带来帮助
 

你可能感兴趣的:(mysql,jsp,数据库,乱码,休闲)