1. 程式人生 > >JSP與servlet之間的中文亂碼問題解決

JSP與servlet之間的中文亂碼問題解決

在jsp與servlet之間傳遞中文引數常常遇到,基本常用幾個:

1.以post 方式傳遞

post傳遞的時候在用引數之前加上:

request.setCharacterEncoding("UTF-8");

2.以get方式傳遞:

以get傳遞與post的處理方式不同要用到String的一個有參建構函式:

String str=request.getParameter("name");
String string=new String(str.getBytes("ISO-8859-1"),"UTF-8");

3.以超連結方式:

與get方式的一樣