Android开发中post.setHeader()这个方法是做什么的 参数都是做什么的

2024-11-28 01:58:02
推荐回答(1个)
回答1:

作用当然是和后台服务器交互,顺便要解决中文乱码

HttpPost post = new HttpPost(url);
post.setHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");

使用setHeader方法重新写一个HttpHeader把Charset写进去就可以了。