前台传递参数:
var url = user_edit.action?userName="+encodeURI(encodeURI(userName));
window.location.href=url;
后台接收:
userName = URLDecoder.decode(userName,"UTF-8");//解码
或者
href="${contextPath}/product/type_listSub.action?typeName=${productType.typeName}&id=${productType.id}"
后台接收:
url的传参是get方式的请求,使用的是ISO-8859-1编码格式,你只要将你的参数的编码进行一下转码就行了
String name = new String(productType.getTypeName().getBytes("ISO-8859-1"), "UTF-8");