/* 自定义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;
}
android 入门学习笔记 BIG5 与 UTF-8互转
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:http://www.heiqu.com/df4912ad8a11ebe4d7017d17a8f5929a.html