js與jsp傳遞中文亂碼問題

來源:互聯網
上載者:User
地址:http://hi.baidu.com/comasp/blog/item/e13e928b4eeb59d2fc1f10d8.html

做ajax傳遞參數的時候遇到這個異常,在網上找了N天的東西,還是沒找到答案,原來我一直沒發現原來是 escape帶來的錯誤。我是這樣寫的

var url = "b.jsp?name=" + escape(u_name);

服務端擷取:

String name=request.getParameter("name");
name=new String(name.getBytes("iso-8859-1"));
System.out.println(name);

結果老是報錯:org.apache.tomcat.util.http.Parameters processParameters
警告: Parameters: Character decoding failed. Parameter skipped.
java.io.CharConversionException: isHexDigit.

我知道是字串轉換異常,可是就不知道怎麼樣弄好。

後來聽說是escapse的問題,於是開始找資料了。終於解決了。

先把url改下:

   var url = "b.jsp?name=" +u_name;
   url=encodeURI(url);
   url=encodeURI(url);    //寫一個不行。如果寫一個就是????號。
                                   //寫2個,則輸出 %df%a4這中.

服務端擷取:

String name=request.getParameter("name");
name = java.net.URLDecoder.decode(name,"UTF-8");   //這句話一定要,因為如果不寫的                                                                                      //話,編碼 就 是%E5%A6%88%System.out.println(name);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.