1 可以设置请求和响应的编码格式
request.setCharacterEncoding("UTF-8");//传值编码
response.setContentType("text/html;charset=UTF-8");//设置传输编码2 前台对字符串进行双重加密后台进行解密(推荐使用)encodeURI(encodeURI(a))(前台加密字符串a)URLDecoder.decode(groupBuyerName,"utf-8")(后台解密字符串a)