转换成GBK
String html = fetchUrlService.get(url); //用默认字符编码解码字符串。 byte[] bs = html.getBytes(); //用新的字符编码生成字符串 html= new String(bs, "GBK");
Done