您好,登錄后才能下訂單哦!
可以嘗試采用如下五種方法解決:
1、改為form方式提交,不用超鏈接方式提交
2、通過encodeURI(encodeURI(checkText))方法提交
java代碼中用URLDecoder.decode解碼:
<script> function download(documentPath){ var url = "<c:url value='/product/download.action?documentPath='/>"+documentPath; url = encodeURI(encodeURI(url)); window.location.href=url; } </script>
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");
5、Java中將字符串轉碼
String s = new String(filename.getBytes("ISO-8859-1"),"UTF-8");
以上就是如何解決java中接收參數亂碼的問題的詳細內容,更多請關注億速云其它相關文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。