方法1
服务器段S tring new = new String(old.getBytes("iso8859-1"),"utf-8");
在js中 对参数加两次encodeURI()按utf-8处理
方法2
服务器端String new = URLDecoder.decode(old,"utf-8");
在js中做两次encodeURI()
设置同一的编码规范
request.setCharacterEncoding(String encode);