使用Retrofit打印请求日志,过滤改变服务器返回结果,直接获取String字符串

Retrofit框架越来越流行了,Retrofit是基于OKHTTP的大家都知道,在之前的话,在Retrofit1.x的时候,是必须要自己手动导入OKHTTP 和 OKio的包的,因为Retrofit依赖于这两个库的。但是自从升级了Retrofit2之后,就可以不用手动导入了,因为已经自己引入了。

Retrofit有一个优点,就是可以自动根据获取到的数据转换成相对应的Bean,它内部提供了一个转换机制,只需要你重写,就能写出自己的转换规则。

dependencies {
    compile 'com.squareup.retrofit2:retrofit:2.2.0'
    compile 'com.squareup.retrofit2:converter-scalars:2.0.0'
    compile 'com.squareup.retrofit2:converter-gson:2.0.2'
    compile 'com.google.code.gson:gson:2.7'
    compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
    }

可以看到,我上面引入了Retrofit2的库

compile 'com.squareup.retrofit2:retrofit:2.2.0'
但是除了这个份之外,我还引入了其他的。

这两个,是在从请求Json数据到Bean需要使用到的。依赖了谷歌的Gson库

compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.google.code.gson:gson:2.7'

直接获取字符串手动解析

除了这种情况,我们经常会因为后台传来的数据的不稳定性,我们需要自己手动去解析字符串,那么就引入了这个
compile 'com.squareup.retrofit2:converter-scalars:2.0.0'

使用方式好简单:

new Retrofit.Builder()  //01:获取Retrofit对象
.baseUrl(Globals.SERVER_ADDRESS) //02采用链式结构绑定Base url
.addConverterFactory(ScalarsConverterFactory.create())//首先判断是否需要转换成字符串,简单类型
.addConverterFactory(GsonConverterFactory.create())//再将转换成bean
.client(okHttpClient)
.build();//03执行操作
public interface StartPageNet
{
    @GET("hao123-soft-online-bcs/soft/2017_02_22_W.P.S.5041.19.552.exe")
    public Call<String> getIndex();
}

首先在这里定义,Call<String> 里的泛型可以写这几种类型:

if (type == String.class
        || type == boolean.class
        || type == Boolean.class
        || type == byte.class
        || type == Byte.class
        || type == char.class
        || type == Character.class
        || type == double.class
        || type == Double.class
        || type == float.class
        || type == Float.class
        || type == int.class
        || type == Integer.class
        || type == long.class
        || type == Long.class
        || type == short.class
        || type == Short.class) {
      return ScalarRequestBodyConverter.INSTANCE;
    }

这里会自动根据返回数据转换成你泛型里写的类型的数据。

 StartPageNet startPageNet = streamRetrofit.create(StartPageNet.class);
 Call<String> download = startPageNet.getIndex();
 download.enqueue(new Callback<String>()
 {
     @Override
     public void onResponse(Call<String> call, Response<String> response)
     {
         String result = response.body();
     }
     @Override
     public void onFailure(Call<String> call, Throwable t)
     {

     }
});

查看Retrofit请求网络日志

有时候需要随时查看网络请求日志,我们这里可以利用OKHttpInterceptor机制
上面我们引入了这个库:
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'

使用代码如下:

HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor(new HttpLoggingInterceptor.Logger()
{
     @Override
     public void log(String message) 
     {
         if (BuildConfig.DEBUG) Log.d("Http", message+"");
     }
});
loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY);//设置日志打印等级
        
 OkHttpClient  okHttpClient = new OkHttpClient.Builder()             
         .addInterceptor(loggingInterceptor)//设置日志打印
         .retryOnConnectionFailure(true)//失败重连
         .connectTimeout(30, TimeUnit.SECONDS)//网络请求超时时间单位为秒
         .build();

.addInterceptor()可以调用多次

自定义Interceptor实现过滤改变请求返回的数据(可使用与保证APP的稳定性)

import com.alibaba.fastjson.JSON;

import java.io.ByteArrayInputStream;
import java.io.IOException;

import okhttp3.Interceptor;
import okhttp3.MediaType;
import okhttp3.Request;
import okhttp3.Response;
import okhttp3.ResponseBody;
import okio.BufferedSource;
import okio.Okio;

/**
 * 网络请求的拦截器
 * Created by xiaolei on 2017/3/2.
 */

public class SessionInterceptor implements Interceptor
{
    @Override
    public Response intercept(Chain chain) throws IOException
    {
        Request request = chain.request();
        Response response = chain.proceed(request);
        return new Response.Builder()
                .body(newResponseBody(response))
                .headers(response.headers())
                .message(response.message())
                .code(response.code())
                .request(response.request())
                .protocol(response.protocol())
                .build();
    }
    private ResponseBody newResponseBody(final Response response)
    {
        return new ResponseBody()
        {
            @Override
            public MediaType contentType()
            {
                return response.body().contentType();
            }
            @Override
            public long contentLength()
            {
                return response.body().contentLength();
            }
            @Override
            public BufferedSource source()
            {
                try
                {
                    String result = response.body().string();
                    if(JSON.parseObject(result).getInteger("code") == 500)
                    {
                        /**
                        *这里改变返回的数据,如果服务器返回的是一个HTML网页,
                        *那么移动端也能拿到一个Json数据,用于保证数据可解析不至于崩溃
                        */
                        ByteArrayInputStream tInputStringStream = new ByteArrayInputStream("{code:500,success:false}".getBytes());
                        BufferedSource source = Okio.buffer(Okio.source(tInputStringStream));
                        return source;
                    }else
                    {
                        ByteArrayInputStream tInputStringStream = new ByteArrayInputStream(result.getBytes());
                        BufferedSource source = Okio.buffer(Okio.source(tInputStringStream));
                        return source;
                    }
                } catch (IOException e)
                {
                    e.printStackTrace();
                    return null;
                }
            }
        };
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,529评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,015评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,409评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,385评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,387评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,466评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,880评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,528评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,727评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,528评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,602评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,302评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,873评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,890评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,132评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,777评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,310评论 2 342

推荐阅读更多精彩内容