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请求参数??的问题的主要内容,如果未能解决你的问题,请参考以下文章

在android中动态创建选项卡并使用传入的参数加载片段

如何对媒体片段的任何部分进行范围请求?

在哪里以及如何使用片段填充我的标签

Python 向 Postman 请求代码片段

如果请求缺少必需的参数,我应该使用啥 HTTP 状态响应代码?

postman 自动生成 curl 代码片段