有些时候页面中的textarea 中的中文传到action中的时候可能会出现乱码,这个时候我们一般可以采用两种办法
action中调用此方法转换
request.setCharacterEncoding("UTF-8");
String Opinion = new String(request.getParameter("cause").getBytes("ISO8859-1"),"UTF-8").trim();
jsp页面中调用此方法,防止乱码
encodeURIComponent(URIstring)