Retrofit打印请求地址以及返回的数据内容

时间:2025-01-27 07:18:20

retrofit做网络请求特别爽,然而当我们用retrofit的时候发现不能直接log打印出网络请求返回的数据内容。比如说返回的是json数据,然而retrofit的Gson工厂早就自动把这些数据给解析掉了,无从获得这个原始数据(有时候用接口测试工具GetMan或者PostMan也不能获得完全准确的数据,笔者亲试过)

咋办?

借助HttpLoggingInterceptor类!

步骤

1.首先导入库

  implementation'.okhttp3:okhttp:3.7.0'
   implementation '.retrofit2:retrofit:2.0.1'
   implementation '.retrofit2:converter-gson:2.0.1'
   implementation'.okhttp3:logging-interceptor:3.4.1'

2.初始化HttpLoggingInterceptor

			/*
           **打印retrofit信息部分
            */
            HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor(new () {
                @Override
                public void log(String message) {
                    //打印retrofit日志
                    ("RetrofitLog","retrofitBack = "+message);
                }
            });
            ();
            OkHttpClient client = new ()//okhttp设置部分,此处还可再设置网络参数
                    .addInterceptor(loggingInterceptor)
                    .build();

请求部分(此部分只有一句.client(client)起了打印作用)

			 /*
            **retrofit请求部分
             */
         
             userConfigPrimarykeyBean=new ();
            ("13411982971");
            Retrofit retrofit=new ()
                    .baseUrl(":8084/appdemo/")
                    .client(client)//此client是为了打印信息
                    .addConverterFactory(())
                    .build();
            NetApi netApi=();
            Call<HttpBack> call=(userConfigPrimarykeyBean);
            (TAG, "发送请求 ");
            (new Callback<HttpBack>() {
                @Override
                public void onResponse(Call<HttpBack> call, <HttpBack> response) {
                    showResponse("请求发送成功,返回信息为: "+().getData().getList().get(0).getConfigValue());
                }

                @Override
                public void onFailure(Call<HttpBack> call, Throwable t) {
                    showResponse("请求失败");
                    (TAG, "请求失败 " );
                }
            });