OkHttp-utils的使用

Posted 内涵馒头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OkHttp-utils的使用相关的知识,希望对你有一定的参考价值。

1.添加依赖:compile ‘com.zhy:okhttputils:2.6.2‘


2.清单文件中注册初始化:
  初始化:OkHttpClient okHttpClient = new OkHttpClient.Builder()
//                .addInterceptor(new LoggerInterceptor("TAG"))
                .connectTimeout(10000L, TimeUnit.MILLISECONDS)
                .readTimeout(10000L, TimeUnit.MILLISECONDS)
                //其他配置
                .build();

        OkHttpUtils.initClient(okHttpClient);

3.okhhtp-utils的get请求:
  OkHttpUtils.get()
                .url("http://apicloud.mob.com/boxoffice/day/query?key=1d120467e646b&area=CN")
                .build()
                .execute(new StringCallback() {
                    @Override
                    public void onError(Call call, Exception e, int id) {
                    }

                    @Override
                    public void onResponse(String response, int id) {
                    }
                });

4.okhhtp-utils的post请求:
   OkHttpUtils.post()
                .url("http://apicloud.mob.com/appstore/horoscope/day")
                .addParams("date", year1)
                .addParams("hour", day1)
                .addParams("key", "1d11949556a24")
                .build()
                .execute(new StringCallback() {
                    @Override
                    public void onError(Call call, Exception e, int id) {
                    }

                    @Override
                    public void onResponse(String response, int id) {
                        Log.d("sss", "response:::" + response);
                    }
                });

5.okhhtp-utils加载图片:
  OkHttpUtils.get()
                .url("http://192.168.13.89:8080/Web_server/a.jpg")
                .build()
                .execute(new BitmapCallback() {
                    @Override
                    public void onError(Call call, Exception e, int id) {

                    }

                    @Override
                    public void onResponse(Bitmap response, int id) {
                        image.setImageBitmap(response);
                    }
                });

以上是关于OkHttp-utils的使用的主要内容,如果未能解决你的问题,请参考以下文章

Android 开源框架 ( 二 ) 基于OkHttp进一步封装的okhttp-utils介绍

Android http 的使用

okhttp和第三方封装好的OKHttp库-okhttp-utils

秒表的使用方法和技巧(秒表的使用方法)

使用“使用严格”作为“使用强”的备份

在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?