比如:
http://localhost:8080/projectName/dutyCondition.action?admitstate=0¤tStep=我的博客
传到后台的时候“我的博客”就会变成你不认识的乱码,如果利用
request.setCharacterEncoding("UTF-8");
或者
currentStep = URLDecoder.decode(currentStep, "UTF-8");
也是不行的。
最后是通过如下方法解决了乱码问题:
以上面的URL为例子,我的参数是currentStep,那么我们只需添加一句:
String temp = new String(currentStep.getBytes("ISO-8859-1") ,"UTF-8") ;
此时,我们再获取temp的值即是我们URL中currentStep后的中文“我的博客”。