将iso-8859-1编码的字符串转换成utf-8 很简单只需要如下操作即可 String string= new String(string.getBytes("iso-8859-1"),"utf-8");