OKHTTP:post上传字符串二次封装工具类

package com.bhw.xhkj.phone_payment.nonoilcoupon.utils;

import android.os.Environment;
import android.util.Log;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import java.io.File;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

import okhttp3.Cache;
import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.FormBody;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

/**
 * @author Administrator
 * @PACKAGE com.bhw.xhkj.phone_payment.nonoilcoupon.utils
 * @DATE 2019/9/20
 */
public class OkHttpUtils {
    private static final String TAG = OkHttpUtils.class.getSimpleName();

    public static final MediaType JSON
            = MediaType.parse("application/json; charset=utf-8");
    //线程池单线程请求
//    private ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();
    private final static int size = 5;
    private ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(size);

    private static final int GET = 1;
    private static final int POST = 2;
    private static final int POSTJSON = 3;
    private static final int ASYNC = 5;
    //超时时间
    public static final int TIMEOUT = 1000 * 10;
    public static final int CONN_TIMEOUT = 1000 * 5;
    private OkHttpClient client = new OkHttpClient();

    private Gson gson = new GsonBuilder().enableComplexMapKeySerialization().create();
    private RequestThread requestThread;

    private static OkHttpUtils instance;

    private OkHttpUtils() {
    }

    public static OkHttpUtils getInstance() {
        if (instance == null) {
            instance = new OkHttpUtils();
        }
        return instance;
    }

    private void init() {
        File sdcache = new File(Environment.getExternalStorageDirectory(), "cache");
        int cacheSize = 10 * 1024 * 1024;
        //设置超时
        client.newBuilder()
                .retryOnConnectionFailure(true)
                .connectTimeout(15, TimeUnit.SECONDS)
                .writeTimeout(20, TimeUnit.SECONDS)
                .readTimeout(20, TimeUnit.SECONDS)
                .cache(new Cache(sdcache.getAbsoluteFile(), cacheSize))
                .build();
    }

    private Response get(String url) throws IOException {
        Request request = new Request.Builder().url(url).build();
        init();
        Response response = client.newCall(request).execute();
        return response;
    }

    private Response postMap(String url, Map<String, Object> params) throws IOException {
        FormBody.Builder builder = new FormBody.Builder();
        if (params != null) {
            for (Map.Entry<String, Object> entry : params.entrySet()) {
                Log.i("参数:", entry.getKey() + ":" + entry.getValue());
                builder.add(entry.getKey(), entry.getValue().toString());
            }
        }
        RequestBody requestBody = builder.build();
        Request request = new Request.Builder()
                .url(url)
                .post(requestBody)
                .build();
        init();
        Response response = client.newCall(request).execute();
        return response;
    }

    public Response postJson(String url, String json) throws IOException {
        Log.i("POSTJSON请求参数---->", json);
        RequestBody body = RequestBody.create(JSON, json);
        Request request = new Request.Builder()
                .url(url)
                .post(body)
                .build();
        init();
        Response response = client.newCall(request).execute();
        return response;
        //response.body().string()这一句代码在方法体里面只能用一次(包括打印输出的使用)
//        return response.body().string();

    }

    private void postAsynPostJson(String url, Map<String, Object> map, final OnCallback callback) {

        //Map转JSON数据
//        Gson gson = new GsonBuilder().enableComplexMapKeySerialization().create();
        RequestBody requestBody = RequestBody.create(JSON, gson.toJson(map));
        Request request = new Request
                .Builder()
                .addHeader("Connection","close")
                .url(url)
                .post(requestBody)
                .build();
        Call call = client.newCall(request);
        call.enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                Log.e(TAG, "请求失败");
                callback.onFailure(e.getMessage());
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                callback.callback(response.body().string());
            }
        });
    }

    /**
     *      * @param url 请求地址
     *      * @param map 请求参数
     *      
     */
    public void getDataFromeGet(final String url, final Map<String, Object> map, final OnCallback callback) {
        requestThread = new RequestThread(GET, url, map, callback);
        scheduledThreadPool.execute(requestThread);
    }

    /**
     *      * @param url 请求地址
     *      * @param map 请求参数
     *      
     */
    public void getDataFromePostMap(final String url, final Map<String, Object> map, final OnCallback callback) {
        requestThread = new RequestThread(POST, url, map, callback);
        scheduledThreadPool.execute(requestThread);

    }

    /**
     *      * 通过map转换成json的post请求
     *      *
     *      * @param url
     *      * @param map
     *      
     */
    public void getDataFromePostJson(final String url, final Map<String, Object> map, OnCallback callback) {

        requestThread = new RequestThread(POSTJSON, url, map, callback);
        scheduledThreadPool.execute(requestThread);
    }

    public void getDataFromePostJsonBack(String url, Map<String, Object> map, OnCallback callback) {
        requestThread = new RequestThread(POSTJSON, url, map, callback);
        scheduledThreadPool.execute(requestThread);
    }

    public void getDataFromPostJsonAsynCallBack(String url, Map<String, Object> map, OnCallback callback) {
        requestThread = new RequestThread(ASYNC, url, map, callback);
        scheduledThreadPool.execute(requestThread);
    }


    class RequestThread implements Runnable {
        private int requestType;
        private String url;
        private int port;
        private Map<String, Object> map;
        private OnCallback callback;

        /**
         *          * @param requestType 请求方式
         *          * @param url         请求地址
         *          * @param map         请求参数
         *          
         */
        public RequestThread(int requestType, String url, Map<String, Object> map, OnCallback callback) {
            this.requestType = requestType;
            this.port = port;
            this.url = url;
            this.map = map;
            this.callback = callback;
        }


        @Override
        public void run() {
            Response response;
            try {
                switch (requestType) {
                    case GET:
                        Log.e(TAG + "requestType", "使用了GET请求");
                        response = get(url);
                        if (response.isSuccessful()) {
                            String result = response.body().string();
                            callback.callback(result);
                        } else {
                            callback.onFailure(response.message());
                        }
                        break;
                    case POST:
                        Log.e(TAG + "requestType", "使用了POST请求");
                        response = postMap(url, map);
                        if (response.isSuccessful()) {
                            String result = response.body().string();
                            callback.callback(result);
                        } else {
                            callback.onFailure(response.message());
                        }
                        break;
                    case POSTJSON:
                        Log.e(TAG + "requestType", "使用了POSTJSON请求");
                        response = postJson(url, gson.toJson(map));
                        if (response.isSuccessful()) {
                            String result = response.body().string();
                            callback.callback(result);
                        } else {
                            callback.onFailure(response.message());
                        }
                        break;
                    case ASYNC:
                        Log.e(TAG + "requestType", "使用了ASYNC请求");
                        postAsynPostJson(url, map, callback);
                        break;
                }

            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    public interface OnCallback {
        void callback(String result);

        void onFailure(String message);
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值