Volley框架简述

/**

  • @作者 杜彬

  • @创建日期 2019/3/20

  • 和网络交互

  • 支持 get和post

  • url method param callback
    */
    public class HttpUtil {

    /**

    • 网路请求分发方法
    • @param url
    • @param method
    • @param param
    • @return
      */
      public HttpUtil doHttp(String url, int method, Map<String, String> param) {
      switch (method) {
      case Request.Method.GET:
      get(url, method, param);
      break;
      case Request.Method.POST:
      post(url, method, param);
      break;
      }
      return this;
      }

    private void post(String url, int method, final Map<String, String> param) {
    StringRequest stringRequest = new StringRequest(method, url, new Response.Listener() {
    @Override
    public void onResponse(String response) {
    if (callback != null) {
    callback.onSuccess(response);
    }
    }
    }, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
    if (callback != null) {
    callback.onFail(error.getMessage());
    }
    }
    }) {
    @Override
    protected Map<String, String> getParams() throws AuthFailureError {
    return param;
    }
    };

     MyApplication.queue.add(stringRequest);
    

    }

    private void get(String url, int method, Map<String, String> param) {
    StringRequest stringRequest = new StringRequest(method, url, new Response.Listener() {
    @Override
    public void onResponse(String response) {
    if (callback != null) {
    callback.onSuccess(response);
    }
    }
    }, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
    if (callback != null) {
    callback.onFail(error.getMessage());
    }
    }
    });

     MyApplication.queue.add(stringRequest);
    

    }

    private Callback callback;

    public void setCallback(Callback callback) {
    this.callback = callback;
    }

    public interface Callback<T, E> {
    void onSuccess(T t);

     void onFail(E e);
    

    }
    }

猜你喜欢

转载自blog.csdn.net/black_amber/article/details/89342197