瀏覽器url傳參中文時得到null的解決方法

y_keven發表於2013-09-05


   在寫一箇中文引數需求的時候遇到了以下問題,經過半天的測試和各種編碼,以及網上一些有用沒用的資料嘗試終於解決
   比如下面的url地址:http://travel.widget.baike.com:8010/travelComment.do?action=queryAllCommentList&docTitle=北京飯店
   在程式中通過下面方法取引數request.getParameter("docTitle");;常理就是你不通過特殊處理也應該是亂碼或者編碼過的東西才對;但是意外的是null值

   中間各種嘗試的過程:
  1.設定請求和相應的編碼
    request.setCharacterEncoding("UTF-8");
       response.setCharacterEncoding("UTF-8");
     2.直接轉碼引數
       System.out.println(new String(request.getParameter("docTitle").getBytes("iso8859-1"),"utf-8"));】
  3.通過url編碼引數
    java.net.URLEncoder.encode(docTitle);
    java.net.URLDecoder.decode(docTitle);
   以上方案都已失敗告終。

   解決方法:
   下面方面得到了中文引數,並得以傳入到後面程式。
        String param = request.getQueryString(); // 得到結果action=queryAllCommentList&docTitle=%B1%B1%BE%A9%B7%B9%B5%EA
        String docTitle = java.net.URLDecoder.decode(param.split("=")[2]);
        System.out.println(docTitle);

相關文章