html
无论是独立的html还是其他程序生成的如Servlet等注意在最终的html的<head>和</head>之间必须加入meta标签用来指定html中输入字符的编码如
<head>
<meta httpequiv=ContentType content=text/html; charset=gb>
<title>测试GET && POSTSend</title>
</head>
jsp和servlet
首先必须解决程序输出(如responsewriteln(String s))和接受从客户端传来的数据(如requestgetParameter(String sname))编码问题我们可以利用文件过滤功能具体需要所用的jsp/servlet容器或者服务器提供的功能设置如在Tomcat中可以在webapps/yourAppDirectory/WEBINF/webxml中设置如下
<filter>
<filtername>SetCharsetEncodingFilter</filtername>
<displayname>SetCharsetEncodingFilter</displayname>
<description>Set CharsetEncoding Filter</description>
<filterclass>mwebSetCharsetEncodingFilter</filterclass>
<initparam>
<paramname>encoding</paramname>
<paramvalue>gb</paramvalue>
</initparam>
</filter>
<filtermapping>
<filtername>SetCharsetEncodingFilter</filtername>
<urlpattern>/*</urlpattern>
</filtermapping>
其中SetCharsetEncodingFilter Class就是用来设置request和reponse字符编码的filter类其中设置语句如下
requestsetCharacterEncoding(targetEncoding);
responsesetContentType(text/html);
responsesetCharacterEncoding(targetEncoding);
另外为了解决通过get(url中带有参数)方式传递参数的乱码问题我们还需要设置一下url传递参数所需要的编码具体在Tomcat中可以在${Tomcat_home}\conf\serverxml中的<connector>和</connector>之间设置如下
<!
URIEncoding=GBK:Force GET method String(Chinese) can be transferd properly uri
note:Tomcat only support GBK specificationso not set charset gb
>
<Connector URIEncoding=GBK port= redirectPort=maxSpareThreads= maxThreads= minSpareThreads=>
</Connector>
最后为了解决jsp的乱码问题我们还需要作如下处理即在左右的jsp头均加上如下指令
<%@ page contentType=text/html;charset=gb language=java%>
或者
<%@ page pageEncoding=gb%>
jdbc和数据库
关于写入数据库和读取数据库数据的乱码问题可以通过如下方式轻松解决
对于JAVA程序的处理方法按我们指定的方法处理
把数据库默认支持的编码格式改为GBK或GB的
到此一般来说对于WEB方式的应用来说中文问题就可以解决了当然以上方法是根据统一编码的原则解决的以及WEB方式的文件转换关系(file>class>load>execute or transfered or response or request)来做的