get后台接收中文乱码

1.例如:
$("#search_info_ON").click(function(){
var title = $("#search_ON").val();
window.location.href=
"${pageContext.request.contextPath}/oto/syt/frontarchON?TITLE="+ encodeURI(encodeURI(prodName));
});
其中encodeURI(encodeURI(prodName)),就是处理参数title在传递中文时的乱码问题。
在后台
String name = request.getParameter("prodName");
String prodName = null;
//解决中文传参乱码问题
if(!General.isEmpty(name)){
prodName = URLDecoder.decode(name,"UTF-8");
}else{
prodName = name;
}


2. 在form表单中,post方式不会存在参数乱码问题,而get方式就会有中文乱码问题

你可能感兴趣的:(get后台接收中文乱码)