`
endual
  • 浏览: 3560846 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

struts 国际化乱码

 
阅读更多

   差不多半年没复习框架了,都在搞论文和打基础,什么算法和数据结构,还看操作系统啥的,不知道这些

在实际的开发中能用到多少。

   大半年不用struts2连个国际化都不怎么写了,呵呵,按照书上居然弄出了,网上一查马上就搞好了,然而,

居然有出现了中文乱码,真是可恶啊。

 

   下面是解决的办法吧:

 

 1.  首先在struts.xml中配置好国家化资源文件的开头的名字

 

 

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>

    <constant name="struts.enable.DynamicMethodInvocation" value="true" />
    <constant name="struts.devMode" value="false" />


    <constant name="struts.custom.i18n.resources" value="message"/>
   
    <package name="default" extends="struts-default" >
        <action name="index" class="endual.iteye.action.Login">
            <result name="success" >hello.jsp</result>
        </action>
    </package>

    <!-- Add packages here -->

</struts>

 

 

 2.资源文件的名字要取好  <constant name="struts.custom.i18n.resources" value="message"/>

 

   这个message就是我们要配置资源文件的开头的名字,你总要告诉框架,我国际化的资源文件的名字是对吧。

然后我们在src下创建两个资源文件,中文一个,英文一个,就是每一种语言一个资源文件

 

   message_zh_CN.properties

 

HelloWorld = 世界你好 !
 

 

   message_en_US.properties

 

HelloWorld = Hello World !

 

 

忘记说了,我们要把资源文件的编码改成支持中文的GBK,什么国家的语言,改成支持什么国家的编码格式吧。要不都无法保存。

 

3.JSP页面的测试:

 

 

<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<%@ taglib prefix="s" uri="/struts-tags" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'test.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    
    x<s:property  value="%{getText('HelloWorld')}"/>x
    
   <!--   <s:textfield name="name" label="%{getText(HelloWorld)}"></s:textfield> -->
    
  </body>
</html>
 

 

4.启动tomcat,哎呀,你发现了乱码对吧,呵呵。没关系,很容易解决的。

 

我们要记住了,资源文件中中文要转成asc嘛,貌似拼错了,但是你懂的,就是java语言本身支持的那么编码。

java有工具,在bin目录下,但是,伟大的中国人还是会用代码来解决,比较dos下去打开输入是麻烦的。

 

 

--------------------------

5.将中文的字符转成ascii编码,用下面的代码

 

 

package util;  
  
/** 
 * native2ascii.exe Java code implementation. 
 *  
 * @author 
 * @version 1.0 
 */  
public class Native2AsciiUtils {  
  
    /** 
     * prefix of ascii string of native character 
     */  
    private static String PREFIX = "\\u";  
  
    /** 
     * Native to ascii string. It's same as execut native2ascii.exe. 
     *  
     * @param str 
     *            native string 
     * @return ascii string 
     */  
    public static String native2Ascii(String str) {  
        char[] chars = str.toCharArray();  
        StringBuilder sb = new StringBuilder();  
        for (int i = 0; i < chars.length; i++) {  
            sb.append(char2Ascii(chars[i]));  
        }  
        System.out.println(sb.toString()) ;
        return sb.toString();  
    }  
  
    /** 
     * Native character to ascii string. 
     *  
     * @param c 
     *            native character 
     * @return ascii string 
     */  
    private static String char2Ascii(char c) {  
        if (c > 255) {  
            StringBuilder sb = new StringBuilder();  
            sb.append(PREFIX);  
            int code = (c >> 8);  
            String tmp = Integer.toHexString(code);  
            if (tmp.length() == 1) {  
                sb.append("0");  
            }  
            sb.append(tmp);  
            code = (c & 0xFF);  
            tmp = Integer.toHexString(code);  
            if (tmp.length() == 1) {  
                sb.append("0");  
            }  
            sb.append(tmp);  
          
            return sb.toString();  
        } else {  
        	
            return Character.toString(c);  
        }  
    }  
  
    /** 
     * Ascii to native string. It's same as execut native2ascii.exe -reverse. 
     *  
     * @param str 
     *            ascii string 
     * @return native string 
     */  
    public static String ascii2Native(String str) {  
        StringBuilder sb = new StringBuilder();  
        int begin = 0;  
        int index = str.indexOf(PREFIX);  
        while (index != -1) {  
            sb.append(str.substring(begin, index));  
            sb.append(ascii2Char(str.substring(index, index + 6)));  
            begin = index + 6;  
            index = str.indexOf(PREFIX, begin);  
        }  
        sb.append(str.substring(begin));  
        return sb.toString();  
    }  
  
    /** 
     * Ascii to native character. 
     *  
     * @param str 
     *            ascii string 
     * @return native character 
     */  
    private static char ascii2Char(String str) {  
        if (str.length() != 6) {  
            throw new IllegalArgumentException(  
                    "Ascii string of a native character must be 6 character.");  
        }  
        if (!PREFIX.equals(str.substring(0, 2))) {  
            throw new IllegalArgumentException(  
                    "Ascii string of a native character must start with \"\\u\".");  
        }  
        String tmp = str.substring(2, 4);  
        int code = Integer.parseInt(tmp, 16) << 8;  
        tmp = str.substring(4, 6);  
        code += Integer.parseInt(tmp, 16);  
        return (char) code;  
    }  
  
} 
 

 

main类

 

package util;

import java.util.Scanner;

public class MainApp {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		
		Scanner in = new Scanner(System.in) ;
		String str = in.next(); 
		
		//Native2AsciiUtils.ascii2Native(str) ;
		Native2AsciiUtils.native2Ascii(str) ;
		

	}

}
 

 

 

  然后运行程序,把世界你好的中文转成------》》》》》》》》   

 

\u4e16\u754c\u4f60\u597d 

就OK了,然后填写到资源文件夹中。

 

这样中文就不会乱码了。

 

-----------------------------------------

假设我们在HelloAction调用了getText那么它会执行以下的操作的

1.查找HelloAction.xx.xx.properties文件中
2.查找HelloAction实现的接口,以及与接口同名的资源文件MyInterface.propreties
3.查找HelloAction的弗雷parentAction的properties文件,文件名为parentAction.properties
4.判断当前HelloAction是否是实现了接口ModelDriven 如果是的,那么就调用getModel方法获得对象
  查找与其同名的资源文件
5.查找当前包下的packaga.paoperties
6.查找到前包的父包,直到顶层包
7.在值栈中查找名为helloworld的属性
8.查找在struts.properties配置的默认的资源文件
9.输出结果
 

 

 

-----------------------------

 

不知道开发中用到的是什么编码格式,反正GBK是支持英语和中文的,貌似实际的开发中UTF-8用的很多吧

 

 

 

 

 

 

 

 

 

分享到:
评论

相关推荐

    struts中文问题,struts国际化问题——终极解决方案

    ### Struts中文问题与国际化问题——终极解决方案深度解析 #### 引言 在Web应用开发中,特别是使用Struts框架时,中文显示和国际化(Internationalization,简称i18n)问题是开发者常遇的挑战。本文将深入探讨解决...

    java国际化中文乱码问题解决包

    Java 国际化(i18n)是让软件能够适应不同语言和地区的过程,而中文乱码问题在处理多语言支持时经常遇到。`ResourceBundle` 是 Java 中用于管理国际化资源的关键类,它允许开发者存储特定语言环境下的文本、消息和...

    STRUTS2国际化的问题

    ### STRUTS2国际化的问题 #### 一、Struts2国际化的概述 Struts2作为一个流行的Web应用框架,为了满足全球用户的使用需求,提供了一系列国际化(Internationalization, 简称I18N)的支持。这包括了如何在配置文件...

    eclipse struts 中文乱码问题图解

    在开发Java Web应用程序时,Eclipse和Struts框架的组合可能会遇到中文乱码的问题,这主要涉及三个方面:页面乱码、参数乱码以及国际化乱码。以下是对这些乱码问题的详细解答: 1. 页面乱码: 当网页编码设置为非...

    Struts2乱码终极解决办法

    - 将Struts2的默认字符集设置为UTF-8,确保国际化资源文件加载时使用正确的编码。 ```properties struts.locale=UTF-8 struts.i18n.encoding=utf-8 ``` - 此外,还可以根据需要调整其他相关配置项,如启用动态...

    struts2中文乱码问题

    综上所述,解决Struts2中文乱码问题的方法主要包括设置JSP页面编码、配置Struts2国际化编码、修改web.xml配置、使用POST请求方式以及自定义过滤器等。开发者可以根据项目的具体情况选择合适的方法来解决中文乱码问题...

    struts处理中文乱码问题总结

    2. **配置Struts国际化资源文件编码**:在`struts-config.xml`中指定资源文件的编码方式,例如: ```xml ``` #### 六、综合建议 - **统一编码标准**:为了确保整个项目的一致性,强烈建议将所有涉及到的编码...

    struts国际化的问题

    在处理Struts国际化问题时,开发者通常需要考虑以下几个关键知识点: 1. **资源文件**:在Struts中,国际化的核心是资源文件,通常命名为`Messages.properties`,它们存储了应用程序中的所有可本地化的字符串。每个...

    struts1.2 解决中文乱码

    ### Struts 1.2 中文乱码问题详解与解决方案 ...如果涉及到国际化需求,则需要考虑多语言支持等问题。总之,通过合理的编码管理和配置,可以确保 Web 应用在处理中文等多语言文本时的正确性和稳定性。

    struts 2. 5.2解决中文乱码

    这里的`struts.i18n.encoding`参数指定了国际化资源的编码。 4. **JSP页面**:确保所有JSP页面的`指令中包含了`pageEncoding`属性,并设置为UTF-8: ```jsp ; charset=UTF-8" pageEncoding="UTF-8"%&gt; ``` 5. *...

    Struts2_国际化

    由于国际化资源文件中可能包含中文或其他非ASCII字符,为了防止页面出现乱码,所有的编码都应当使用标准的编码方式,并将中文字符转化为Unicode编码。可以使用JDK自带的native2ascii工具进行资源文件的编码转换。 ...

    s2sh框架+struts2国际化的实例

    另外,关于struts2国际化乱码问题: 解决方法: 找到jdk的安装目录--C:\Program Files\Java\jdk1.6.0_10\bin(我的安装目录) 在bin里面找到native2ascii.exe并运行 在命令窗口输入 native2ascii -encoding UTF-8 ...

    struts,ajax乱码解决方案

    - **编码长度**:UTF-8采用可变长度编码,一个字符可能是1至4个字节,这使得它在处理国际化字符时更具优势。 2. **文件编码** - **文件保存**:文件的编码通常为ANSI(Windows默认,相当于GBK)或UTF-8。在...

    Struts2zhogn乱码处理

    推荐使用UTF-8编码,因为UTF-8是一种国际通用的编码方式,能够支持多种语言字符,减少乱码问题的发生。 ```html &lt;!-- 在JSP页面头部添加 --&gt; ; charset=UTF-8" pageEncoding="UTF-8"%&gt; ``` ##### 2. 配置`...

    Struts2资源文件在jsp页面中显示乱码解决

    然而,在国际化(I18N)的应用场景下,Struts2资源文件在JSP页面中显示乱码的问题常常困扰着开发者。本文将深入探讨这一问题,并详细介绍两种有效的解决方案。 ### Struts2资源文件与乱码问题 Struts2框架通过资源...

    引用国际化资源乱码--properties edit

    在开发Java Web应用程序时,尤其是使用Struts2框架时,我们常常会遇到国际化资源文件(如.properties)在JSP页面中显示乱码的问题。这通常是由于编码不一致、字符集设置错误或者处理方式不当导致的。本文将深入探讨...

    解决struts2.1.6+spring+hibernate 中文乱码

    - **struts.i18n.reload=true**:该配置项开启国际化资源文件的热加载功能,即当资源文件发生变化时,无需重启应用服务器即可生效。 - **struts.locale=zh_CN**(注释掉):设置默认语言环境为简体中文。虽然这里被...

    struts2国际化的实例

    在本实例中,我们将深入探讨如何在Struts2中实现国际化,并解决中文乱码问题。 1. **理解Struts2的国际化机制** - Struts2的国际化是基于Servlet API中的`java.util.ResourceBundle`类,它允许我们定义不同语言...

Global site tag (gtag.js) - Google Analytics