使用 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 - 一个乘数,用于确定每次重试尝试设置为套接字的指数时间。