okhttp 請求攔截器和響應(yīng)攔截器

在做處理網(wǎng)絡(luò)請求的時候,可以直觀的看到每次請求的傳參和響應(yīng)是非常有幫助的。

 public static API get() {
        if (api == null) {
            synchronized (Retrofit.class) {
                if (api == null) {

                    OkHttpClient httpClient = new OkHttpClient
                            .Builder()
                            .addInterceptor(new RequestLoggerInterceptor())
                            .addInterceptor(new ResponseLogInterCeptor())
                            .build();
                    Retrofit retrofit = new Retrofit.Builder()
                            .baseUrl(API.BASE_URL)
                            .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
                            .addConverterFactory(GsonConverterFactory.create())
                            .client(httpClient)
                            .build();

                    api = retrofit.create(API.class);
                }
            }
        }
        return api;
    }

請求的攔截器非常簡單

    static class RequestLoggerInterceptor implements Interceptor {
        @Override
        public Response intercept(Chain chain) throws IOException {
            Request request = chain.request();

            Log.d(TAG, "url     =  : " + request.url());
            Log.d(TAG, "method  =  : " + request.method());
            Log.d(TAG, "headers =  : " + request.headers());
            Log.d(TAG, "body    =  : " + request.body());

            return chain.proceed(request);
        }
    }

而響應(yīng)的攔截器需要考慮body()只能被調(diào)用一次的問題,開始的時候我單純的以為這樣就可以

    static class responseLogInterceptor implements Interceptor {
        @Override
        public Response intercept(Chain chain) throws IOException {
            Request request = chain.request();
            Response response = chain.proceed(request);


            Log.d(TAG, "code     =  : " + response.code());
            Log.d(TAG, "message  =  : " + response.message());
            Log.d(TAG, "protocol =  : " + response.protocol());
            Log.d(TAG, "string   =  : " + response.body().string());


            Response clone = response.newBuilder().build();
            return clone;
        }
    }

開始以為這樣就是clone了一個Response對象方仿,后來發(fā)現(xiàn)太年輕了

  public Builder newBuilder() {
    return new Builder(this);
  }


Builder(Response response) {
      this.request = response.request;
      this.protocol = response.protocol;
      this.code = response.code;
      this.message = response.message;
      this.handshake = response.handshake;
      this.headers = response.headers.newBuilder();
      this.body = response.body;
      this.networkResponse = response.networkResponse;
      this.cacheResponse = response.cacheResponse;
      this.priorResponse = response.priorResponse;
      this.sentRequestAtMillis = response.sentRequestAtMillis;
      this.receivedResponseAtMillis = response.receivedResponseAtMillis;
    }

   public Response build() {
      if (request == null) throw new IllegalStateException("request == null");
      if (protocol == null) throw new IllegalStateException("protocol == null");
      if (code < 0) throw new IllegalStateException("code < 0: " + code);
      if (message == null) throw new IllegalStateException("message == null");
      return new Response(this);
    }

同一個body嘛。

稍微改一下

static class ResponseLogInterceptor implements Interceptor {
        @Override
        public Response intercept(Chain chain) throws IOException {
            Response response = chain.proceed(chain.request());

            Log.d(TAG, "code     =  : " + response.code());
            Log.d(TAG, "message  =  : " + response.message());
            Log.d(TAG, "protocol =  : " + response.protocol());

            if (response.body() != null && response.body().contentType() != null) {
                MediaType mediaType = response.body().contentType();
                String string = response.body().string();
                Log.d(TAG, "mediaType =  :  " + mediaType.toString());
                Log.d(TAG, "string    =  : " + string);
                ResponseBody responseBody = ResponseBody.create(mediaType, string);
                return response.newBuilder().body(responseBody).build();
            } else {
                return response;
            }
        }
    }

關(guān)鍵在于response.newBuilder().body(responseBody).build(); 這里傳入了一個新構(gòu)建的body。這樣才能保證在后續(xù)操作中調(diào)用body.string()不會拋出異常。

當(dāng)然在輸入body().string()的時候艳吠,還要做MediaType的類型判斷

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市孽椰,隨后出現(xiàn)的幾起案子昭娩,更是在濱河造成了極大的恐慌,老刑警劉巖黍匾,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件栏渺,死亡現(xiàn)場離奇詭異,居然都是意外死亡膀捷,警方通過查閱死者的電腦和手機(jī)迈嘹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來全庸,“玉大人凡傅,你說我怎么就攤上這事甫煞。” “怎么了腿宰?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵雁刷,是天一觀的道長覆劈。 經(jīng)常有香客問我,道長沛励,這世上最難降的妖魔是什么责语? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮目派,結(jié)果婚禮上坤候,老公的妹妹穿的比我還像新娘。我一直安慰自己企蹭,他們只是感情好白筹,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著谅摄,像睡著了一般徒河。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上送漠,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天顽照,我揣著相機(jī)與錄音,去河邊找鬼闽寡。 笑死代兵,一個胖子當(dāng)著我的面吹牛尼酿,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播奢人,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼谓媒,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了何乎?” 一聲冷哼從身側(cè)響起句惯,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎支救,沒想到半個月后抢野,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡各墨,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年指孤,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片贬堵。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡恃轩,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出黎做,到底是詐尸還是另有隱情叉跛,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布蒸殿,位于F島的核電站筷厘,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏宏所。R本人自食惡果不足惜酥艳,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望爬骤。 院中可真熱鬧充石,春花似錦、人聲如沸盖腕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽溃列。三九已至劲厌,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間听隐,已是汗流浹背补鼻。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人风范。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓咨跌,卻偏偏與公主長得像,于是被迫代替她去往敵國和親硼婿。 傳聞我的和親對象是個殘疾皇子锌半,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容