可以嘗試採用以下五種方法解決:
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");
(影片教學推薦:java影片)
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開發入門
以上是如何解決java接收參數亂碼的問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!