java 字符串 转码

//xmlStr 为需要转码的字符串 UTF-8 可改为不同的编码格式 如:GBK
//亲测可用 仅供参考
String xmlStrs="";
    try{
        xmlStrs=new String(xmlStr.getBytes("ISO8859-1"),"UTF-8");
    }catch(UnsupportedEncodingException uee){}

 

posted @ 2014-10-26 10:00  飞叶-枯寂  阅读(251)  评论(0编辑  收藏  举报