1.數據庫建立為UTF-8格式
2.項目右鍵屬性為UTF-8格式
3.所有頁面申明為UTF-8
4.JDBC URL設為:UTF-8
jdbc:mysql://localhost:3306/company?useUnicode=true&characterEncoding=utf-8
5.數據庫Driver選擇UTF-8格式
6.Tomcat編碼改成UTF-8
在server.xml里面增加URIEncoding="UTF-8"
- <Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8" />
<Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8" />
7.加編碼過濾器SetCharacterEncodingFilter.java
注意:根據所在包名確定具體使用哪個包
- 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 if (value.equalsIgnoreCase("yes"))
-
- 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);
-
- }
-
- }
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 if (value.equalsIgnoreCase("yes"))
this.ignore = true;
else
this.ignore = false;
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
// TODO 自動生成方法存根
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
public void destroy() {
// TODO 自動生成方法存根
this.encoding = null;
this.filterConfig = null;
}
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}
在web.xml里面映射配置
- <filter>
- <filter-name>Set Character Encoding</filter-name>
- <filter-class>com.yourcompany.util.SetCharacterEncodingFilter</filter-class>
- <init-param>
- <param-name>encoding</param-name>
- <param-value>UTF-8</param-value>
- </init-param>
- </filter>
- <filter-mapping>
- <filter-name>Set Character Encoding</filter-name>
- <url-pattern>/*</url-pattern>
- </filter-mapping>
posted on 2010-06-03 22:33
fly 閱讀(435)
評論(0) 編輯 收藏 所屬分類:
jsp學習