1.这种错误很常见,我发现最好用的方法还是在传参数前进行编码,用URLEncoder.encode()方法,在获取值request.getParameter()后进行解码,用string str =new String(name.getBytes("iso-8859-1"),"utf-8");这样就好了。。。。。