retrofit2 使用教程 及 Android 網路架構搭建 (原創)

来源:http://www.cnblogs.com/alex9xu/archive/2016/07/15/5673712.html
-Advertisement-
Play Games

squareup 推出 retrofit2 已經有一段時間了,現在的版本比較穩定,沒有什麼大坑了。網路上的教程要麼太簡單,只是個Demo;要麼有些落時,要麼復用性比較差,所以自己寫個教程([email protected]),供大家參考。 1. 首先在build.gradle引入依賴 註意,這裡 ...


squareup 推出 retrofit2 已經有一段時間了,現在的版本比較穩定,沒有什麼大坑了。網路上的教程要麼太簡單,只是個Demo;要麼有些落時,要麼復用性比較差,所以自己寫個教程([email protected]),供大家參考。

 

1. 首先在build.gradle引入依賴

compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.3.1'

註意,這裡的 logging 用於輸出網路交互的Log,對於開發調試極其有用。之前retrofit2因為不能輸出Log被人嫌棄了很久,各高手實現了幾種列印Log的方式,現在總算有官方的了。

 

2. 這是工具類

import okhttp3.HttpUrl;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import okhttp3.logging.HttpLoggingInterceptor;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
import com.alex9xu.test.config.AppConfigInterface;
import java.io.IOException;
/** * Created by [email protected] on 2016/7/13 */public class RetrofitBase {
    private static Retrofit mRetrofit;
    public static Retrofit retrofit() {
        if (mRetrofit == null) {
            OkHttpClient client;
            // Notice: The only differ of debug is: HttpLoggingInterceptor
            if(!AppConfigInterface.isDebug) {
                client = new OkHttpClient.Builder()
                        .addInterceptor(new Interceptor() {
                            @Override
                            public Response intercept(Chain chain) throws IOException {
                                Request original = chain.request();
                                HttpUrl originalHttpUrl = original.url();
                                HttpUrl url = originalHttpUrl.newBuilder()
                                        .addQueryParameter("Id", "123456")
                                        .addQueryParameter("deviceType", "0")
                                        .build();
                                // Request customization: add request headers
                                Request.Builder requestBuilder = original.newBuilder()
                                        .url(url);
                                Request request = requestBuilder.build();
                                return chain.proceed(request);                            }
                        })
                        .build();
            } else {
                HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
                logging.setLevel(HttpLoggingInterceptor.Level.BODY);
                client = new OkHttpClient.Builder()
                        .addInterceptor(logging)
                        .addInterceptor(new Interceptor() {
                            @Override
                            public Response intercept(Chain chain) throws IOException {
                                Request original = chain.request();
                                HttpUrl originalHttpUrl = original.url();
                                HttpUrl url = originalHttpUrl.newBuilder()
                                        .addQueryParameter("Id", "123456")
                                        .addQueryParameter("deviceType", "0")
                                        .build();
                                // Request customization: add request headers
                                Request.Builder requestBuilder = original.newBuilder()
                                        .url(url);
                                Request request = requestBuilder.build();
                                return chain.proceed(request);                            }
                        })
                        .build();
            }

            mRetrofit = new Retrofit.Builder()
                    .baseUrl(AppConfigInterface.BASE_COM_URL)
                    .addConverterFactory(GsonConverterFactory.create())
                    .client(client)
                    .build();        }
        return mRetrofit;    }

}

講解一下:

(1) 通過 addInterceptor 實現的列印日誌及加入多個公共參數功能。

(2) 除了含有 HttpLoggingInterceptor 外,測試的和正式的,沒有任何區別。通過全局變數控制是否為正式環境,如果是正式環境則不輸出網路交互相關的Log。

(3) 可以通過 addQueryParameter("deviceType", "0") 的形式加入多個公共參數,這樣所有的請求都會帶該參數。

(4) 這裡 BASE_COM_URL 是 http://test.hello.com/ 的形式。

 

3. 使用方式:

 

(1) 先寫介面

import android.support.v4.util.ArrayMap;
import com.alex9xu.test.config.AppConfigInterface;
import com.alex9xu.test.model.ClassifyListResult;

import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.QueryMap;
/** * Created by [email protected] on 2016/7/14 */
public interface ClassifyApi {
    @GET(AppConfigInterface.CLASSIFYLIST)
    Call<ClassifyListResult> getClassify(@QueryMap ArrayMap<String,String> paramMap);}

這裡通過Post提交參數,參數存儲在Map里,可以添加多組參數。註意,我使用了ArrayMap,這是Android里特有的一種形式,記憶體占用只有HashMap的十分之一左右。

String CLASSIFYLIST = "query/classify.html";

 

(2) 再寫返回值結構

import com.alex9xu.test.base.BaseResponse;
import com.alex9xu.test.model.entity.ClassfiyBean;

import java.util.List;
/** * Created by [email protected] on 2016/7/14
 */public class ClassifyListResult extends BaseResponse {
    private DataEntity data;
    public DataEntity getData() {
        return data;    }

    public static class DataEntity {
        private List<ClassfiyBean> classifyList;
        public List<ClassfiyBean> getClassifyList() {
            return classifyList;        }
    }
}

 

/** * Created by [email protected] on 2016/7/14
 */public class ClassfiyBean {
    private String icon;    private String name;

    public String getIcon() {
        return icon;    }
    public String getName() {
        return name;    }

}

返回的數據寫成如上形式,以利於復用。

 

(3) 調用

import com.alex9xu.test.model.ClassifyListResult;
import com.alex9xu.test.model.entity.ClassfiyBean;
import com.alex9xu.test.net.ClassifyApi;
import com.alex9xu.test.net.RetrofitBase;
/** * Created by [email protected] on 2016/7/14
 */
public class MainActivity extends AppCompatActivity{
  ...
private void getData() {
    ArrayMap<String,String> paramMap = new ArrayMap<>();
    paramMap.put("version", "1.0");
    paramMap.put("uid", "654321");
    ClassifyApi classifyApi = RetrofitBase.retrofit().create(ClassifyApi.class);
    Call<ClassifyListResult> call = classifyApi.getClassify(paramMap);
    call.enqueue(new Callback<ClassifyListResult>() {
        @Override
        public void onResponse(Call<ClassifyListResult> call, Response<ClassifyListResult> response) {
            LogHelper.d(TAG, "getClassify, Suc");
            LogHelper.d(TAG, "getClassify = " + response.body());
            if(null != response.body() && null != response.body().getData()) {
                List<ClassfiyBean> list = response.body().getData().getClassifyList();
                if(null != list && list.size()>0) {
                    mTvwDisplay.setText(list.get(0).getName());
                }
            }
        }

        @Override
        public void onFailure(Call<ClassifyListResult> call, Throwable t) {
            LogHelper.e(TAG, "getClassify, Fail");
        }
    });
}
...

 

講解:會拼接成 https://test.hello.com/query/classify.html?uid=654321&version=1.0&Id=123456&deviceType=0 ,註意,其中兩項是公共參數。

 

好了,這樣就可以正常運行了。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 做的一個項目中需要得到經緯度.. 實現:先寫一個方法如下 在直接用就可以了 第一個參數是地名,第二個參數是城市名,第三個是你想在哪個文本框顯示...就可以得到文本框的值也就是該地名.. 最後就是取文本框的值,如果不想看到這個文本框,可以隱藏,同樣可以取到值 ...
  • (?:pattern) 匹配 pattern 但不獲取匹配結果,也就是說這是一個非獲取匹配,不進行存儲供以後使用。這在使用 "或" 字元 (|) 來組合一個模式的各個部分是很有用。例如, 'industr(?:y|ies) 就是一個比 'industry|industries' 更簡略的表達式。 ( ...
  • × 目錄 [1]表達式 [2]塊語句 [3]空語句[4]聲明 前面的話 如果表達式在javascript中是短語,那麼語句(statement)就是javascript整句或命令。表達式計算出一個值,語句用來執行以使某件事發生。javascript程式無非就是一系列可執行語句的集合,javascri ...
  • TWaver能否與其他開發工具集成?當然沒有問題!今天就拿一個EasyUI的小例子試刀,小小演示一下如何在其上添加TWaver圖元。原例展示了一個EasyUI的基本佈局,併在其中部面板添加了表格。我們的目標是在其表格上方添加個簡單的TWaver拓撲圖,並將其樹圖顯示在west面板。 ...
  • 我也是看了騰訊isux的博客,解答了我關於flexbox一個很長時間的疑惑,就是flex佈局在安卓手機會出現內容長短不同導致不均分的現象。 具體的內容可以去看騰訊isux的博客,地址在這:https://isux.tencent.com/flexbox.html 我這裡也只是當作一個問題的紀錄 其實 ...
  • 線上實例 實例演示 預設 實例演示 每周第一天 實例演示 輸入框插件 實例演示 HTML data 屬性 實例演示 回調函數1 實例演示 回調函數2 使用方法 複製 複製 下載 ...
  • 安卓v7支持包下的ListView替代品————RecyclerView RecyclerView這個控制項也出來很久了,相信大家也學習的差不多了,如果還沒學習的,或許我可以帶領大家體驗一把這個藝術般的控制項。 據官方介紹,該控制項是屬於之間用的非常多的ListView和GridView的替代品,既然能替 ...
  • PagerAdapter 簡介 PagerAdapter是android.support.v4包中的類,它的子類有FragmentPagerAdapter, FragmentStatePagerAdapter,這兩個adapter都是Fragment的適配器,用於實現Fragment的滑動效果,這兩 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...