struts2中文乱码解决学习笔记
终于在自己的项目中引入struts2了,但一上来就来一个中文乱码的问题。google了半天找了几个不痛不痒的结果,很是不满意。又调试了半天,终于 解决了中文乱码的问题。总结一下,中文乱码,首先要区分是页面乱码、action乱码,还是数据库乱码。大致的原理是java使用unicode编码-- >window使用gbk(gb2312的扩展集)--mysql默认使用utf-8(unicode的一种编码方法),这样转来转去就乱码了 ^_^。解决方法如下:
转自:http://student.csdn.net/space.php?uid=248401&do=blog&id=26114
? 1. 在struts2里面,最好将所有字符都设成utf-8。struts.devMode=false
struts.enable.DynamicMethodInvocation=true
struts.i18n.reload=true
struts.ui.theme=simple
struts.locale=zh_CN
struts.i18n.encoding=UTF-8
struts.serve.static.browserCache=false
struts.url.includeParams=none
其中locale、encoding就是字符集的设定了。
?? 3.?在web.xml加个filter
?<!-- zh-cn encoding -->???? 跟上述方法,类似还有在action中设定字符编符.
???HttpServletResponse response = null;
???response = ServletActionContext.getResponse();
???request.setCharacterEncoding("utf-8");
???response.setContentType("text/html;charset=utf-8");
?
?
??? 通过上述方法,基本就可以搞定中文乱码的问题了。当然,也有例外(如web server的版本\数据库的版本等等)。象在我的一个项目碰到一个中文乱码,tomcate5.5是会乱码的,而在tomcate6中就不会。这边就涉及到tomcate connector字符的设置了。
??? <Connector port="80" maxHttpHeaderSize="8192"?
--------------------------------
? 后记之一:在使用struts2时,仍是遇到一种乱码。后来调试才发现,struts2的web.xml配置是有顺序的。
?? 在web.xml中EncodingFilter的位置应该在Struts2的FilterDispatcher之前,因为要先调整字符集,然后进入Action。
? 按照Struts2的API,filter的顺序是
struts-cleanup filter
SiteMesh filter
FilterDispatcher
--------------------------------
?? 后记之二:这个方法是下下策了,只有在前面的方法都无效时才使用。
在action中直接使用request.getParameter()时;还是出现乱码。原因分析如下:
?? 1、getParameter()是有带字符参数的。例:
String s = (String)request.getParameter("txt").getBytes("iso-8859-1");
???2、String也可以带有字符参数。
String(byte[]?bytes, String?charsetName)
?
构造一个新的 String,方法是使用指定的字符集解码指定的字节数组。
例:String s = new String("中文","utf-8");
?? 3、综合上述两点,编写一个类来完成此项任务
?? public class ConvertCharacter{
??????? public String Convert(String s){
??????????? String?result;
??????????? byte[] temp ;
??????????? try{
??????????????? temp = s.getBytes("iso-8859-1");
??????????????? result =? new String(temp,"utf-8");
??????????? }
??????????? return result;
??????? }
?? }
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"