作用当然是和后台服务器交互,顺便要解决中文乱码HttpPost post = new HttpPost(url);post.setHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");使用setHeader方法重新写一个HttpHeader把Charset写进去就可以了。