android String 类型转换成UTF-8格式

在android开发中,有时候会遇到汉字乱码的问题,在这个时候,吧String串加一个编码格式转换,转换成UTF-8的格式就可以了

 

技术文章
 1 public static String toUtf8(String str) {
 2         String result = null;
 3         try {
 4             result = new String(str.getBytes("UTF-8"), "UTF-8");
 5         } catch (UnsupportedEncodingException e) {
 6             // TODO Auto-generated catch block
 7             e.printStackTrace();
 8         }
 9         return result;
10     }
技术文章

就是这么简单的一个函数

android String 类型转换成UTF-8格式,布布扣,bubuko.com

文章来自:http://www.cnblogs.com/cwr941012/p/3590800.html
© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3