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     }

就是这么简单的一个函数

posted @ 2014-03-09 22:31  小菜小白  阅读(23423)  评论(0编辑  收藏  举报