jsp頁面通過url向後臺傳值時的中文亂碼問題

頂級部落格專家發表於2018-05-10

1、jsp頁面的url這樣寫:

    例如:  str = "哈哈哈";

                window.location.href = "http://127.0.0.1:8080/a/b.do?str="+ encodeURI(encodeURI(str));

2、後臺這樣寫:

    例如:  @RequestMapping("/aaa")

                public String aaa(String str){

                        String strr = URLDecoder.decode(str,"utf-8");//解碼傳過來的中文

                }

相關文章