首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

BIG5转UTF-八与UTF-8转BIG5

2013-11-09 
BIG5转UTF-8与UTF-8转BIG5自定义BIG5转UTF-8 public String big52unicode(String strBIG5){String strRetu

BIG5转UTF-8与UTF-8转BIG5

自定义BIG5转UTF-8

public String big52unicode(String strBIG5)   {     String strReturn="";     try     {       strReturn = new String(strBIG5.getBytes("big5"), "UTF-8");     }     catch (Exception e)     {       e.printStackTrace();     }     return strReturn;   } 

? 自定义UTF-8转BIG5

public String unicode2big5(String strUTF8)   {     String strReturn="";     try     {       strReturn = new String(strUTF8.getBytes("UTF-8"), "big5");     }     catch (Exception e)     {       e.printStackTrace();     }     return strReturn;   } }
?

热点排行