使用 Volley 進行 HTTP 請求
在 app-level build.gradle 中新增 gradle 依賴項
compile 'com.android.volley:volley:1.0.0'
另外,將 android.permission.INTERNET 許可權新增到應用程式的清單中。
**在你的應用程式中建立 Volley RequestQueue 例項單例**
public class InitApplication extends Application {
private RequestQueue queue;
private static InitApplication sInstance;
private static final String TAG = InitApplication.class.getSimpleName();
@Override
public void onCreate() {
super.onCreate();
sInstance = this;
Stetho.initializeWithDefaults(this);
}
public static synchronized InitApplication getInstance() {
return sInstance;
}
public <T> void addToQueue(Request<T> req, String tag) {
req.setTag(TextUtils.isEmpty(tag) ? TAG : tag);
getQueue().add(req);
}
public <T> void addToQueue(Request<T> req) {
req.setTag(TAG);
getQueue().add(req);
}
public void cancelPendingRequests(Object tag) {
if (queue != null) {
queue.cancelAll(tag);
}
}
public RequestQueue getQueue() {
if (queue == null) {
queue = Volley.newRequestQueue(getApplicationContext());
return queue;
}
return queue;
}
}
現在,你可以使用 getInstance()
方法使用 volley 例項,並使用 InitApplication.getInstance().addToQueue(request);
在佇列中新增新請求
從伺服器請求 JsonObject 的一個簡單示例是
JsonObjectRequest myRequest = new JsonObjectRequest(Method.GET,
url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d(TAG, response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.d(TAG, "Error: " + error.getMessage());
}
});
myRequest.setRetryPolicy(new DefaultRetryPolicy(
MY_SOCKET_TIMEOUT_MS,
DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
要處理 Volley 超時,你需要使用 RetryPolicy
。如果由於網路故障或某些其他情況而無法完成請求,則使用重試策略。
Volley 提供了一種簡單的方法來實現你的 RetryPolicy
以滿足你的要求。預設情況下,Volley 將所有請求的所有套接字和連線超時設定為 5 秒。RetryPolicy
是一個介面,你需要在發生超時時實現你想要重試特定請求的邏輯。
建構函式採用以下三個引數:
initialTimeoutMs
- 指定每次重試嘗試的套接字超時(以毫秒為單位)。maxNumRetries
- 嘗試重試的次數。backoffMultiplier
- 一個乘數,用於確定每次重試嘗試設定為套接字的指數時間。