js 提交 乱码解决

来源:互联网 发布:无主之地2网络联机 编辑:程序博客网 时间:2024/06/04 19:02

1.改为form方式提交,不用超链接方式提交,用form方式传参指定不乱码。

2.通过encodeURI(encodeURI(checkText))提交,java代码中用URLDecoder.decode解码:

function download(documentPath){ var url = ""+documentPath; url = encodeURI(encodeURI(url)); window.location.href=url;}

java代码中取中文:
String documentPath = (String) request.getParameter(‘documentPath’);
documentPath = URLDecoder.decode(documentPath,”utf-8”);

3.修改tomcat的server.xml中的connector,添加URLEncoding=”UTF-8”

4.中文从java中传到jsp再通过url传到java:
java中编码:URLEncoder.encode(URLEncoder.encode(“传递的中文”,”utf-8”));
java中解码码:URLDecoder.decode(request.getParameter(‘documentPath’),”utf-8”);

原创粉丝点击