|
现在将常见的乱码问题分为JSP页面显示中文乱码、表单提交乱码两类。
1)JSP页面中显示中文乱码
在JSP文件中使用page命令指定响应结果的MIME类型,如
2)表单提交乱码
表单提交时(post和Get方法),使用request.getParameter方法得到乱码,这是因为tomcat处理提交的参数时默认的是iso-8859-1,表单提交get和post处理乱码问题不同,下面分别说明。
(1)POST处理
对post提交的表单通过编写一个过滤器的方法来解决,过滤器在用户提交的数据被处理之前被调用,可以在这里改变参数的编码方式,过滤器的代码如下:
Java代码 http://blog.运维网.com/e/u/themes/default/images/spacer.gif
- package example.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;
- publicclass SetCharacterEncodingFilter implements Filter {
- protected String encoding = null;
- protected FilterConfig filterConfig = null;
- protectedboolean ignore = true;
- publicvoid destroy() {
- this.encoding = null;
- this.filterConfig = null;
- }
- publicvoid 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);
- }
- }
-
- // Pass control on to the next filter
- chain.doFilter(request, response);
- }
- publicvoid init(FilterConfig filterConfig) throws ServletException {
- this.filterConfig = filterConfig;
- this.encoding = filterConfig.getInitParameter("encoding");
- String value = filterConfig.getInitParameter("ignore");
- if (value == null) {
- this.ignore = true;
- } elseif (value.equalsIgnoreCase("true")) {
- this.ignore = true;
- } elseif (value.equalsIgnoreCase("yes")) {
- this.ignore = true;
- } else {
- this.ignore = false;
- }
- }
- protected String selectEncoding(ServletRequest request) {
- return (this.encoding);
- }
- }
package example.util;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
importjavax.servlet.FilterConfig;
importjavax.servlet.ServletException;
importjavax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
public> protected Stringencoding = null;
protectedFilterConfig filterConfig = null;
protected booleanignore = true;
public void destroy() {
this.encoding = null;
this.filterConfig =null;
}
public voiddoFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
if(ignore || (request.getCharacterEncoding() == null)) {
Stringencoding = selectEncoding(request);
if(encoding != null) {
request.setCharacterEncoding(encoding);
}
}
// Pass control on tothe next filter
chain.doFilter(request,response);
}
public void init(FilterConfigfilterConfig) 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 StringselectEncoding(ServletRequest request) {
return(this.encoding);
}
}
文中红色的代码即为处理乱码的代码。
web.xml文件加入过滤器
Xml代码 http://blog.运维网.com/e/u/themes/default/images/spacer.gif
-
- Encoding
-
- example.util.SetCharacterEncodingFilter
-
-
- encoding
- gbk
-
-
-
- ignore
- true
-
-
Encoding
example.util.SetCharacterEncodingFilter
encoding
gbk
ignore
true
Xml代码 http://blog.运维网.com/e/u/themes/default/images/spacer.gif
Encoding
/*
(2) Get方法的处理
tomcat对post和get的处理方法不一样,所以过滤器不能解决get的乱码问题,它需要在其他地方设置。
打开\conf目录下server.xml文件,找到对8080端口进行服务的Connector组件的设置部分,给这个组件添加一个属性:URIEncoding="GBK"。修改后的Connector设置为:
Java代码 http://blog.运维网.com/e/u/themes/default/images/spacer.gif
* 注意修改后重新启动tomcat才能起作用。
1.使用GBK编码的解决方案
这个最简单 遇到设置编码的地方就是用GBK数据库gbk 然后在使用个过滤器过滤编码为gbk一切搞定。
效果为添加数据无乱码 读出无乱码 数据库管理工具无乱码 到处sql结构和数据无乱码
2.使用UTF-8编码解决方案
所有编码都设置为UTF-8
数据库编码utf8
设置过滤器编码utf8
数据库连接?characterEncoding=utf8
然后在数据库管理工具或mysql命令行 运行 SETcharacter_set_results = gbk;
效果为添加数据无乱码 读出无乱码 数据库管理工具无乱码 到处sql结构和数据时存在乱码
3.页面使用UTF8 数据库使用latin1的解决方案
jap java tomcat 设置为UTF-8
过滤器 utf8
数据库连接?characterEncoding=latin1
数据库其他latin1
然后在数据库管理工具或mysql命令行 运行 SETcharacter_set_results = gbk;
效果为添加数据无乱码 读出无乱码 数据库管理工具无乱码 到处sql结构和数据时存在乱码
|
|
|