| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 658 人关注过本帖
标题:中文乱码问题哦解决
只看楼主 加入收藏
SoftWarezx
Rank: 1
等 级:新手上路
威 望:1
帖 子:47
专家分:9
注 册:2010-7-14
结帖率:100%
收藏
 问题点数:0 回复次数:1 
中文乱码问题哦解决
struts2中文乱码解决方法


1. 在struts2里面,最好将所有字符都设成utf-8。 <%@ page contentType="text/html; charset=UTF-8"%> <%@ page pageEncoding="UTF-8" %>1.1 在jsp页面设定字符编码。这边有必有说明的是如果是jsp+java bean+servlet的方案,中文乱码很好解决,统一设成gb2312就可以了。    1.2 使用struts框架字符集不能设成gb2312,要改成utf-8。
 2. 在struts.properties 添加:
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 -->    <filter>        <filter-name>struts-cleanup </filter-name>        <filter-class>            org.apache.struts2.dispatcher.ActionContextCleanUp        </filter-class>    </filter>      <filter-mapping>        <filter-name>struts-cleanup </filter-name>        <url-pattern>/* </url-pattern>    </filter-mapping>
     跟上述方法,类似还有在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"                maxThreads="150" minSpareThreads="25" maxSpareThreads="75"                enableLookups="false" redirectPort="8443" acceptCount="100"                connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="GBK" />

--------------------------------------------------------------------
后记之一:在使用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;
        }
  }

request.getParameter乱码的问题
方法一:
通过设置tomcat的配置文件server.xml
Connector port="8080" maxHttpHeaderSize="8192"
      maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
      enableLookups="false" redirectPort="8443" acceptCount="100"
      connectionTimeout="20000" disableUploadTimeout="true" uRIEncoding="gbk"/>

方法二:
1: String id=new String(request.getParameter("id").getBytes("ISO8859-1"),"UTF-8");

 

 

后记:  
jsp部分 html部分
如:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

如果连接了数据库, 最好把数据也考虑在内,
-----------------------------------------------------------------------------------------------

在struts.xml文件中一个常量:

view plaincopy to clipboardprint?

   1. <struts>  
   2.     <constant name="struts.i18n.encoding" value="GBK"/>  
   3.   
   4.     <include file="struts-default.xml"/>   
   5.      
   6. </struts>


web.xml文件中必须添加一个filter

view plaincopy to clipboardprint?

   1. <filter>  
   2.      <filter-name>struts-cleanup</filter-name>  
   3.         <filter-class>  
   4.             org.apache.struts2.dispatcher.ActionContextCleanUp  
   5.         </filter-class>  
   6.     </filter>  
   7.   
   8.     <filter-mapping>  
   9.         <filter-name>struts-cleanup</filter-name>  
  10.         <url-pattern>/*</url-pattern>  
  11.     </filter-mapping>   

<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class> org.apache.struts2.dispatcher.ActionContextCleanUp </filter-class>
</filter>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
 <url-pattern>/*</url-pattern>
</filter-mapping>

注意了:struts2中web.xml配置是有顺序的。

  在web.xml中EncodingFilter的位置应该在Struts2的FilterDispatcher之前,因为要先调整字符集,然后进入Action。

按照Struts2的API,filter的顺序是 struts-cleanup filter SiteMesh filter FilterDispatcher。

 
给大家分享下!  O(∩_∩)O~
搜索更多相关主题的帖子: 乱码 中文 
2010-10-14 13:46
SoftWarezx
Rank: 1
等 级:新手上路
威 望:1
帖 子:47
专家分:9
注 册:2010-7-14
收藏
得分:0 
觉得有用的顶一下谢谢了!O(∩_∩)O~
2010-10-14 13:47
快速回复:中文乱码问题哦解决
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012474 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved