java的http請求亂碼問題:(推薦:java影片教學)
get請求出現亂碼:
解決方法:在背景取得字串後對編碼進行轉化,如常見的編碼ISO-8859-1,代碼如下
String name = request.getParameter("name"); name=new String(name.getBytes("ISO-8859-1","utf-8"))
post請求出現亂碼:
##解決方法:在servlet頁面中新增response.setCharcacterEncoding("utf-8")更多java知識請關注
java基礎教學欄位。
以上是java的get亂碼問題解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!