Android设置内容类型HttpPost
Posted
技术标签:
【中文标题】Android设置内容类型HttpPost【英文标题】:Android set content type HttpPost 【发布时间】:2013-03-15 13:55:12 【问题描述】:如何在 android 中更改 HttpPost 的内容类型?
对于一个请求,我需要将内容类型设置为 application/x-www-form-urlencoded
所以我得到了这段代码:
httpclient=new DefaultHttpClient();
httppost= new HttpPost(url);
StringEntity se = new StringEntity("");
se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/x-www-form-urlencoded"));
httppost.setEntity(se);
但这并不能解决问题,我无法在任何地方找到解决方案。
干杯
【问题讨论】:
【参考方案1】: HttpPost httppost = new HttpPost(builder.getUrl());
httppost.setHeader(HTTP.CONTENT_TYPE,
"application/x-www-form-urlencoded;charset=UTF-8");
// Add your data
httppost.setEntity(new UrlEncodedFormEntity(builder
.getNameValuePairs(), "UTF-8"));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
注意:构建器只包含 url 和 namevalue 对。
【讨论】:
我已经设置了另一个标题,因为表单也是一个身份验证请求。这不会覆盖那个吗? 一切顺利,谢谢! (标题不会被覆盖)。 你可以用HTTP.CONTENT_TYPE
代替"Content-Type"
能否请您包含构建builder
的代码行?
@msysmilu 它只是一个 URL 和名称值对的列表。它与问题无关。请看developer.android.com/reference/org/apache/http/client/entity/…【参考方案2】:
已弃用:nameValuePairs
替代方案:使用volley library
调用的完整代码,供需要的人使用。
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("grant_type", "password"));
nameValuePairs.add(new BasicNameValuePair("username", "user1"));
nameValuePairs.add(new BasicNameValuePair("password", "password1"));
HttpClient httpclient=new DefaultHttpClient();
HttpPost httppost = new HttpPost("www.yourUrl.com");
httppost.setHeader(HTTP.CONTENT_TYPE,"application/x-www-form-urlencoded;charset=UTF-8");
try
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));
catch (UnsupportedEncodingException e)
e.printStackTrace();
// Execute HTTP Post Request
try
HttpResponse response = httpclient.execute(httppost);
Log.d("Response:" , response.toString());
catch (IOException e)
e.printStackTrace();
【讨论】:
nameValuePairs 已弃用。你能用 Map 或 HashMap 编辑你的 sn-p 吗? 好点,我没有在项目 atm 上工作,如果你 @AnandSavjani 正在研究它并找到使用地图的更新方法,请编辑回复; 10x 我已经解决了支持所有类型的方法和内容类型的 volley 库的问题 :)以上是关于Android设置内容类型HttpPost的主要内容,如果未能解决你的问题,请参考以下文章
curl 形式的 http post 方法的默认标头内容类型是啥? [复制]
内容类型为 application/x-www-form-urlencoded 的 Http Post 请求在 Spring 中不起作用