论坛首页 入门技术论坛

Flex2 国际化(internationalization)

浏览 5284 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-08-29  

现在做的这个Flex项目需要进行国际化,这里总结一下

和java一样,Flex2也可以使用.properties文件实现国际化,使用flex的mx.resources.ResourceBundle类来读取properties文件。同样也可以在Flex Builder2中安装Properties Editor插件来写properties文件。

1.创建一个Flex项目
2.在这个项目中创建 locale 文件夹
3.在 locale 文件夹中添加2个properties文件,如下

en_US.properties

  1. label1=Hello World!   
  2. label2=Welcome!  

zh_CN.properties

  1. label1=\u5927\u5bb6\u597d\uff01   
  2. label2=\u6b22\u8fce\uff01  

4.将 locale 文件夹添加为flex项目的source path (两个方法)
a)右击项目 -> properties -> Flex Compiler -> 在additional compiler arguments中添加 -sp locale
b)右击项目 -> properties -> Flex Build Path -> Source path -> add Folder -> 选中locale文件夹即可

现在开始写代码了

  1. package util {   
  2.        
  3.     import flash.events.EventDispatcher;   
  4.     import flash.events.IEventDispatcher;   
  5.     import flash.events.Event;   
  6.     import mx.resources.ResourceBundle;   
  7.        
  8.     public class Localizator extends EventDispatcher {   
  9.            
  10.         //采用单例模式   
  11.         private static var _instance : Localizator;   
  12.            
  13.         private var _language : String;   
  14.            
  15.         //这里的resource名应与.properties文件名相同   
  16.         [ResourceBundle("en_US")]   
  17.         private var lang_en_US:ResourceBundle;   
  18.            
  19.         [ResourceBundle("zh_CN")]   
  20.         private var lang_zh_CN:ResourceBundle;   
  21.            
  22.         [Bindable]   
  23.         private var currRes:ResourceBundle;   
  24.            
  25.         public function Localizator(language : String = "en_US") {   
  26.             selectLanguage(language);   
  27.         }   
  28.            
  29.         public static function getInstance(language : String = "en_US"):Localizator {   
  30.             if (_instance == null) {   
  31.                 _instance = new Localizator(language);   
  32.             }   
  33.             return _instance;   
  34.         }   
  35.            
  36.         private function selectLanguage(language : String):void {   
  37.             this._language = language;   
  38.                
  39.             if (_language == "en_US") {   
  40.                 this.currRes = lang_en_US;   
  41.             } else if (_language == "zh_CN") {   
  42.                 this.currRes = lang_zh_CN;   
  43.             } else {   
  44.                 this.currRes = lang_en_US;   
  45.             }   
  46.         }   
  47.            
  48.         [Bindable(event="languageChange")]   
  49.         public function getText(key:String):String {   
  50.             return this.currRes.getString(key);   
  51.         }   
  52.            
  53.         public function get language():String {   
  54.             return this._language;   
  55.         }   
  56.            
  57.         public function set language(language : String):void {   
  58.             if (this._language != language) {   
  59.                 selectLanguage(language);   
  60.                 dispatchEvent(new Event("languageChange"));   
  61.             }   
  62.         }   
  63.     }   
  64. }  

主程序代码

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">  
  3.   
  4.     <mx:Script>  
  5.         [CDATA[  
  6.             import util.Localizator;  
  7.               
  8.             [Bindable]  
  9.             private var localizator : Localizator = Localizator.getInstance();  
  10.               
  11.             private function changeLanguage(language:String):void {  
  12.                 localizator.language = language;  
  13.             }  
  14.               
  15.         ]]  
  16.     </mx:Script>  
  17.   
  18.     <mx:Label id="label1" x="10" y="10" text="{localizator.getText('label1')}" width="152" height="20" fontSize="12" fontWeight="bold"/>  
  19.     <mx:Label id="label2" x="10" y="38" text="{localizator.getText('label2')}" width="144" height="22" fontSize="12" fontWeight="bold"/>  
  20.        
  21.     <mx:Button x="10" y="68" label="Chinese" click="changeLanguage('zh_CN')"/>  
  22.     <mx:Button x="88" y="68" label="English" click="changeLanguage('en_US')"/>  
  23.        
  24.        
  25. </mx:Application>  

OK,编译运行就可以看到结果了。

另外有些问题需要说明
1.properties文件须使用UTF-8编码

2.(Flex supports static inclusion of localized resources, but not dynamic retrieval of resources at run time.) Flex2是将properties文件编译到swf文件中的,目前还不支持动态读取外部properties文件

3.如果保存或编译代码时,遇到Unable to resolve a class for ResourceBundle: en_US_properties问题,大可放心,这是Flex Builder2的bug,只需要在main menu(顶部菜单)中选 Project -> Clean... 就可以了。或者将上面的Localizator.as随便空一行再保存编译一下,这个error也会消失,呵呵。

参考
Flex 2 Developer's Guide -> Localizing Flex Applications

http://flexme.wordpress.com/2007/07/11/internationalization-in-flex/
http://www.deitte.com/archives/2006/10/using_resource.htm
http://www.zhuoqun.net/article.asp?id=267

  • flextest.rar (151.9 KB)
  • 描述: source code 和 swf
  • 下载次数: 303
   发表时间:2007-08-30  
补充资料

Flex 3:Feature Introductions: Runtime Localization
http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization

Internationalizing Flex 2 Apps Pt 2
http://jeff.mxdj.com/internationalizing_flex_2_apps_pt_2.htm
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics