標籤href屬性中加入漢字參數的亂碼解決

我已經在HTML頁面頂部設置了編碼爲utf-8,可是在我點擊超連接<a href="xx/username='張三'">後,我在後臺獲取的username變成了??,後來我發現<a>的請求編碼是iso-8859-1。咱們須要在拿到username後進行轉碼操做。編碼

username=new String(username.getBytes("iso-8859-1","utf-8"));utf-8

好了,問題解決。get

相關文章
相關標籤/搜索