Flex 国际化参考

做一个记录和mx.utils.StringUtil.substitute()包做个记录:

 

    Using this class, the example above would look more like this:

    

receivedMessage=At %time%, you received a message from %userName%.
// then in your code
trace(ResourceStringUtil.getResoureceStringWithTokens("receivedMessage", {time: "11:49", userName: "Mims"}));
// displays
At 11:49, you received a message from Mims.

 

 

	import mx.resources.ResourceManager;
	
	/**
	 * A utility for string related functions within.
	 *
	 * @author Mims H. Wright
	 */
	public class ResourceStringUtil
	{
		public static function get DEFAULT_BUNDLE():String { return "Strings"; }
		
		/** 
		 * Replaces tokens in a resource string with values from a generic object.
		 * The tokens in the string will be replaced if a matching named property exists
		 * in the tokenValues object. 
		 * 
		 * @param key The key name for looking up the string in the resource bundle.
		 * @param tokenValues A generic object containing values for the tokens.
		 * @param bundle The resource bundle to use. Default is Strings.
		 * 
		 * @example <listing version="3.0">
		 * 
		 * // If the following is defined in Strings.properties...
		 * userSelectedProductMessage=%userName% viewed %productName% at %date%.
		 * 
		 * // you could retrieve that data with values replaced by using...
		 * var message:String = ResourceStringUtil.getResoureceStringWithTokens(
		 * 				"userSelectedProductMessage", 
		 *				{
		 *					userName: "mims", 
		 * 					productName: product.name, 
		 *					date: newDate()
		 *				});
		 */
		static public function getResourceStringWithTokens(key:String, tokenValues:Object, bundle:String = ""):String {
			if (bundle == "") { bundle = DEFAULT_BUNDLE; }
			
			var string:String = ResourceManager.getInstance().getString(bundle, key);
			// match tokens in the format %token%
			var tokens:Array = string.match(/%[A-Za-z0-9]+%/g);
			
			for each (var token:String in tokens) {
				var propertyName:String = token.slice(1, token.length-1);
				if (tokenValues[propertyName] != undefined && tokenValues[propertyName] != null) { 
					var value:String = String(tokenValues[propertyName]);
					string = string.replace("%" + propertyName + "%", value);
				} else {
					//else just make that string blank.
					string = string.replace("%" + propertyName + "%", "");
				}
			}
			return string;
		} 
	}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值