关于jsp网页中文乱码问题
(1)解决get()请求中的中文乱码问题:
在使用request来获取get()请求中的参数后,把参数的编码转化成你所设置的编码(我的是utf-8)。
new String(str.getBytes("ISO-8859-1"),"utf-8");
(2)解决post()请求中的中文乱码问题:
在使用request来获取post()请求中的参数时,先设置编码。
request.setCharacterEncoding("utf-8")
request.setCharacterEncoding("utf-8")