前端(转换):
var param = XXXXXXXXXXXXXXXXXX;
param = decodeURIComponent(param,true);
param = encodeURI(param, "UTF-8");
$.post('<%=request.getContextPath()%>a.html' ,encodeURI(param, "UTF-8"),function(data){
reFresh();
},"json");
后台(解析):
String remark = URLDecoder.decode(model.getPhyeRemark(), "utf-8");