我在jsp中使用了下面这句:
response.sendRedirect("test.jsp?name=姓名&pwd=1111") ;
但,在test.jsp中获取参数时,pwd可以正常获得,而name
获得的是乱码。
然后我在这之前加了:
response.setContentType("text/html;charset=gb2312");
还试过其他一些有关中文乱码的解决方法,都失败。
请教高手指点了,先谢了。
解决:
String sURL="test.jsp?name=姓名&pwd=1111";
sURL=new String(sURL.getBytes("GBK"),"ISO8859_1");
response.sendRedirect(sURL);