·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]as3.0字符如何转换与unicode字符转换代码示例

时间:2012-09-06 14:04CuPlayer
针对flash游戏的网络通讯,使flash字符都使用unicode的方式进行处理,在没有找到As3.0自身对unicode字符的处理方式

针对flash游戏的网络通讯,使flash字符都使用unicode的方式进行处理,在没有找到As3.0自身对unicode字符的处理方式,本人采用了下列处理方法

unicode字符串转为ByteArray:

  1. //unicode string to ByteArray   
  2. public static function StrToByteArray( strValue:String, uLen:uint = 0 ):ByteArray  
  3. {  
  4.     var byAaryR:ByteArray = new ByteArray();  
  5.     byAaryR.endian = Endian.LITTLE_ENDIAN;  
  6.     for ( var i:int = 0; i < strValue.length; ++i )  
  7.     {  
  8.         byAaryR.writeShort(strValue.charCodeAt(i));  
  9.     }  
  10.     for ( i = 0; i < (uLen - strValue.length); ++i )  
  11.     {  
  12.         byAaryR.writeShort(0);  
  13.     }  
  14.     return byAaryR;  

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器