如何在4.4.2中使用来自HttpPost的帖子?

时间:2014-07-19 20:40:40

标签: json apache httpurlconnection android-4.4-kitkat

我在这个问题上工作了好几个小时但完全陷入困境。以下代码在我的Android 4.1.2测试设备上运行完美,但我无法使用第二个设备 运行4.4.2。我读到从Apache httpClient移动到HttpURLConnection解决了某些人的问题,但我也在使用GET - 方法,它可以正常工作。我已经尝试添加标题,就像我发现的网站上提到的那样。那没用。那么请你帮我解决这个问题,让我在Android 4.4.2上工作,或者给我一个正确的方向提示?感谢。

 List<NameValuePair> params = new ArrayList<NameValuePair>();
.
.
.
 DefaultHttpClient httpClient = new DefaultHttpClient();
 HttpPost httpPost = new HttpPost(url);                
 httpPost.setEntity(new UrlEncodedFormEntity(params));
 HttpResponse httpResponse = httpClient.execute(httpPost);
 HttpEntity httpEntity = httpResponse.getEntity();
 is = httpEntity.getContent();

1 个答案:

答案 0 :(得分:0)

在oncreate()方法中设置以下标记。

<i>StrictMode.enableDefaults(); </i>

扩展。现在它会正常工作..