java ee 中文乱码的问题 发生中文乱码的三种情况 (一) 表单form Post 方法 直接在服务器中设置 request.setCharacterEncoding("utf-8"); get方法 自己转码,下面是方法. public class HuanMa{ public static String getUTF8(String str){ String s=""; try { s= new String(str.getBytes("iso-88
//1.代码解决 public class LuanMa { public static String getNewString(String luanma){ String result = ""; try{ result = new String(luanma.getBytes("ISO-8859-1"),"UTF-8"); //以ISO-8859-1解码,再以UTF-8重新编码 } catch(Exception e){ e.printSt