5.1中的Depreciated HttpGet不适用于6.0

时间:2015-10-05 08:29:50

标签: android post get deprecated

一些弃用的方法,与HTTP Get& amp; amp;在Android 6.0中删除了Post方法。有没有替代解决方案?

我目前的代码是:

//these are all depriciated in 5.0 & removed in 6.0
import org.apache.http.HttpEntity;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.entity.EntityTemplate;
import org.apache.http.protocol.HttpContext;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

请帮我找一个解决方案 另请在6.0中指定修改后的弃用方法。

2 个答案:

答案 0 :(得分:2)

自API API 22以来,

Android HttpClient deprecated。您应该使用其他方法进行连接。

例如:

  1. HttpUrlConnection
  2. Volley
  3. OkHttp

答案 1 :(得分:0)

您应该使用URLConnection类。