首页 > 代码库 > java 字符串 转码

java 字符串 转码

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

 

java 字符串 转码