public class Convert {
  public static String convert(String string) {
    String s = "";
    try {
      s = new String(string.getBytes("iso-8859-1"), "GBK");
    }
    catch (Exception ex) {
      System.out.println("字符串处理异常");
    }
    return s;
  }
}
可以转成中文你试试看能不能用