如何在 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);
但这并不能解决问题,我无法在任何地方找到解决方案。
干杯