久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      如何解決java中接收參數(shù)亂碼的問題

      如何解決java中接收參數(shù)亂碼的問題

      可以嘗試采用如下五種方法解決:

      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中傳到j(luò)sp,再通過url傳到j(luò)ava

      java中編碼:

      URLEncoder.encode(URLEncoder.encode("傳遞的中文","utf-8"));

      java中解碼碼:

      URLDecoder.decode(request.getParameter('documentPath'),"utf-8");

      5、Java中將字符串轉(zhuǎn)碼

      String s = new String(filename.getBytes("ISO-8859-1"),"UTF-8");

      推薦教程:java開發(fā)入門

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號