jsp:ajax传中文乱码解决办法...
时间:2010-08-18 来源:Bee_Li
jsp向后台action传参数之前先编码两次,如图中params:
后台接收:
String param = getRequest().getParameter("xxx");
param = URLDecoder.decode(param,"UTF-8");
不再乱码,继续编码...
相关阅读 更多 +
时间:2010-08-18 来源:Bee_Li
jsp向后台action传参数之前先编码两次,如图中params:
后台接收:
String param = getRequest().getParameter("xxx");
param = URLDecoder.decode(param,"UTF-8");
不再乱码,继续编码...