request.setCharacterEncoding(UTF-8);
http://localhost:8080/projectName/dutyCondition.action?admitstate=0¤tStep=我的博客
以上面的URL为例子,我的参数是currentStep,那么我们只需添加一句:
String temp = new String(currentStep.getBytes(ISO-8859-1) ,UTF-8) ;
此时,我们再获取temp的值即是我们URL中currentStep后的中文“我的博客”。
请登录发表跟帖