1.客戶端向服務器端發送請求時亂碼
//解決post方式編碼
request.setCharacterEncoding("UTF-8"); //告訴服務器客戶端什麼編碼,只能處理post請求方式
//解決get方式編碼
String name = new String(name.getBytes("iso-8859-1"),"UTF-8");
2.服務器向客戶端返回結果時亂碼
response.setContentType("text/html;charset=UTF-8");html