Android中HTTP请求中文乱码解决办法
程序员文章站
2023-12-19 09:55:40
android中http请求中文乱码解决办法
编码参数
list formparams = new arr...
android中http请求中文乱码解决办法
编码参数
list<namevaluepair> formparams = new arraylist<namevaluepair>(); // 请求参数 for (namevaluepair p : params) { formparams.add(p); } urlencodedformentity entity = new urlencodedformentity(formparams,http.utf_8); // 创建post请求 httppost httppost = new httppost(url); httppost.setentity(entity);
android发送http请求,android默认编码已是utf-8。
问题描述:
如上代码中已经设置了请求为utf-8,服务器中编码也是全部utf-8,可是服务器获取中文还是出现乱码。
由于服务器端并非自己开发,无法看到服务器是如何运行的,只知道编码是utf-8。
同样的服务器,iphone客户端发送中文无乱码。
问题解决:
尝试打印andorid,iphone的http头。
发现其中的content-type 不一样。
andorid :content-type:application/x-www-form-urlencoded; iphone:content-type:application/x-www-form-urlencoded; charset=utf-8
于是尝试在请求的时候加个头
httppost.setheader("content-type", "application/x-www-form-urlencoded; charset=utf-8");
然后问题解决。
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!