url给action传中文参数乱码
发布时间: 2018-04-06 浏览次数: 208
标题:url给action传中文参数乱码
发表人:Lifs发表时间:2018-04-06
详细内容:求解决方案

姓名:dsfhk

request.setCharacterEncoding(UTF-8);

姓名:xxdrg

http://localhost:8080/projectName/dutyCondition.action?admitstate=0&currentStep=我的博客

以上面的URL为例子,我的参数是currentStep,那么我们只需添加一句:

String temp = new String(currentStep.getBytes(ISO-8859-1) ,UTF-8) ;

此时,我们再获取temp的值即是我们URL中currentStep后的中文“我的博客”。

我要发表跟帖

请登录发表跟帖