Solve the JSP development in the Web program display Chinese three kinds of methods _jsp programming
Source: Internet
Author: User
method One: The simplest is the most used method <%@ page language= "java" pageencoding= "GBK"%>
or <%@ page contenttype= "TEXT/HTML;CHARSET=GBK", where you can use gb2312 or GBK, but GBK supports more characters than gb2312.
This method is used for Chinese display in JSP pages.
method Two: Use the filter Filters are used primarily for form submissions, and data is inserted into the database? Resolution This should also be the encoding that Tomcat does not specify for the request, or the default encoding for ISO-8859-1 encoding.
Write a Setcharacterencodingfilter class.
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 {
TODO automatically generate method stubs
if (Ignore (request.getcharacterencoding () = null)) {
String encoding = selectencoding (request);
if (encoding!= null)
request.setcharacterencoding (encoding);
}
Chain.dofilter (request, response);
}
public void Destroy () {
TODO automatically generate method stubs
this.encoding = null;
This.filterconfig = null;
}
Protected String selectencoding (ServletRequest request) {
return (this.encoding);
}
}
and then Web.xml Plus !--Set Character encoding-->
<filter>
<filter-name> Set Character Encoding </filter-name>
<filter-class> Com.struts.common.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>
!--Set Character encoding-->
The benefits of using filters are many, especially among projects.
And more useful when using internationalization, as long as the page specifies <%@ page language= "java" pageencoding= "UTF-8"%>, the server will display the correct character set according to the local locale.
So I particularly recommend using filters.
method Three: Modify Tomcat's Server.xml file uriencoding <connector debug= "0" acceptcount= "connectiontimeout=" 20000 "true"
port= "redirectport=" "8443" enablelookups= "false" minsparethreads= "75" maxsparethreads= "
maxthreads= "maxpostsize=" "0" uriencoding= "GBK"
</Connector>
This approach is primarily for getting strings from URLs.
In tomcat5.0 and above versions, the Post and get methods differ in the processing of encodings. If you get Chinese in the URL, it will appear? Resolution However, there is no problem with the tomcat4.1 version, because the tomcat4.1 post and get methods are the same when coding.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.