http请求参数??的问题
Posted zeussbook
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http请求参数??的问题相关的知识,希望对你有一定的参考价值。
如题,A项目带参数发送请求到B项目。刚开始还好,但是发觉 参数带中文 就出现问题了,变成了??
解决方法:发送中文参数前先做处理
request.getSession().removeAttribute("pass");
request.getSession().removeAttribute("type");
//设置编码格式不然会乱码??
username = URLEncoder.encode(username,"UTF-8");
address = URLEncoder.encode(address,"UTF-8");
return "redirect:"+resource.getString("business.type.twoURL")+"?price="+price+"&u="+ username+"&d="+address+"&t="+phone;
另一个项目接收,就是普通的接收
String userName =request.getParameter("u");
String address = request.getParameter("d");
String phoneNum = request.getParameter("t");
以上是关于http请求参数??的问题的主要内容,如果未能解决你的问题,请参考以下文章