真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Retrofit怎么使用

這篇文章主要介紹“Retrofit怎么使用”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Retrofit怎么使用”文章能幫助大家解決問題。

山亭ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

Retrofit

文中所有 Retrofit 都是指的 Retrofit2

Retrofit其實我們可以理解為OkHttp的加強版,它也是一個網(wǎng)絡(luò)加載框架。 底層是使用OKHttp封裝的。準確來說,網(wǎng)絡(luò)請求的工作本質(zhì)上是OkHttp完成,

而 Retrofit 僅負責網(wǎng)絡(luò)請求接口的封裝。它的一個特點是包含了特別多注解,
方便簡化你的代碼量。
優(yōu)點:

  1. 超級解耦

  2. 可以配置不同HttpClient來實現(xiàn)網(wǎng)絡(luò)請求

  3. 支持同步、異步和RxJava

  4. 可以配置不同的反序列化工具來解析數(shù)據(jù),如:json、xml

  5. 請求速度快,使用非常方便靈活

Retrofit 使用

配置依賴:

implementation 'com.squareup.retrofit2:retrofit:2.5.0'//Retrofit依賴
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'//可選依賴,解析json字符所用


_
網(wǎng)絡(luò)權(quán)限:

_
步驟:

  1. 定義接口類(封裝URL地址和數(shù)據(jù)請求)

  2. 實例化Retrofit

  3. 通過Retrofit實例創(chuàng)建接口服務(wù)對象

  4. 接口服務(wù)對象調(diào)用接口中的方法,獲取Call對象

  5. Call對象執(zhí)行請求(異步,同步請求)

創(chuàng)建 Retrofit 實例

Retrofit怎么使用

Retrofit retrofit = new Retrofit.Builder()
        .baseUrl("http://localhost:6666")
        .build();

_

Get請求

//baseURL(從頭開始到任意一個斜杠結(jié)束)
String baseURL="https://www.wanandroid.com/article/list/0/";
@GET("json?cid=60")
Call getData();
//獲取Retrofit對象
Retrofit retrofit = new Retrofit.Builder()
        .baseUrl(MyServer.baseURL)
        .build();
        
//通過Retrofit獲取接口服務(wù)對象
MyServer server = retrofit.create(MyServer.class);
//接口對象調(diào)用其方法獲取call對象
Call data = server.getData();
//和 okhttp 使用方法差不多,不同的是 android 系統(tǒng)回調(diào)方法執(zhí)行在主線程
//call執(zhí)行請求
data.enqueue(new Callback() {
    @Override
    public void onResponse(Call call, Response response) {
        try {
            String json = response.body().string();
            Log.e(TAG, "onFailure: " +  response.body().string());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    @Override
    public void onFailure(Call call, Throwable t) {
        Log.e(TAG, "onFailure: " + t.getMessage());
    }
});

_

Post請求

String URL = "http://apicloud.mob.com/appstore/health/";//必須以反斜杠結(jié)尾
public interface MyServer {
//POST("search?")    POST("search")相同
//@Field("key") String value post請求用來提交參數(shù)的
    //@FormUrlEncoded post請求提交form表單的時候如果有參數(shù),需要填加這個注解,用來將提交的參數(shù)編碼
    //post請求不提交參數(shù),不要加,
    //如果有提交的參數(shù),沒有加@FormUrlEncoded
    //@Field和@FieldMap一樣,@FieldMap只不過是把一個一個的參數(shù),合成一個map
    @POST("search?")
    @FormUrlEncoded
    Call postData1(@Field("key") String appKey,@Field("name") String appKey);
    @POST("search")  
    @FormUrlEncoded
    Call postData2(@FieldMap Map map);
}
//POST異步
private void initPostEnqueue() {
    //1.創(chuàng)建Retrofit對象
    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(MyServer.URL)
            .build();
    //2.獲取MyServer接口服務(wù)對象
    MyServer myServer = retrofit.create(MyServer.class);
    //3.獲取Call對象
    //方式一
    Call call1 = myServer.postData1("908ca46881994ffaa6ca20b31755b675");
    //方式二
    //不用切換主線程了,因為Retrofit幫我們切過了
    //okHttpClient需要自己切換主線程
    Map map = new HashMap<>();
    map.put("appKey","908ca46881994ffaa6ca20b31755b675");
    Call call = myServer.postData2(map);
    //4.Call對象執(zhí)行請求
    call.enqueue(new Callback() {
        @Override
        public void onResponse(Call call,Response response) {
            try {
                String result = response.body().string();
                Log.e("retrofit", "onResponse: "+result);
                tv.setText(result);//默認直接回調(diào)主線程
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        @Override
        public void onFailure(Call call, Throwable t) {
            Log.e("retrofit", "onFailure: "+t.getMessage());
        }
    });
}

_

Retrofit 的注解

Retrofit怎么使用

//get
@GET("data/%E7%A6%8F%E5%88%A9/20/2")
Call getData();
//post
@POST("data/%E7%A6%8F%E5%88%A9/20/2")
Call getData2();
//field
@POST("register")
@FormUrlEncoded
Call getData3(@Field("username") String username,
                        @Field("password") String password,
                        @Field("phone") String phone,
                        @Field("verify") String verify);
//query
@GET("project/list/1/json")
Call getData4(@Query("cid") int cid);
//fieldMap
@POST("register")
@FormUrlEncoded
Call getData5(@FieldMap Map map);
//queryMap
@GET("project/list/1/json?")
Call getData6(@QueryMap Map map);
//body
@POST("user/login")
Call getData7(@Body RequestBody requestBody);
//path
@GET("data/%E7%A6%8F%E5%88%A9/20/{page}")
Call getData8(@Path("page") int page);
//url
@GET
Call getData9(@Url String url_query);

_

設(shè)置 headers

方式1:

Retrofit怎么使用

這是單個 headers 和 多個 headers 的普通添加方式
方式2:
Retrofit怎么使用

代碼添加
方式3:

Retrofit怎么使用

數(shù)據(jù)解析 (Converter)

  • Retrofit 支持多種方式數(shù)據(jù)解析

  • 需要在Geadle中添加依賴

Gson:implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
Jackson:implementation 'com.squareup.retrofit2:converter-jackson:2.0.2'


對比 Okhttp

  • 準確來說,Retrofit 是一個 RESTful 的 HTTP 網(wǎng)絡(luò)請求框架的封裝。

  • 原因:網(wǎng)絡(luò)請求的工作本質(zhì)上是 OkHttp 完成,而 Retrofit 僅負責 網(wǎng)絡(luò)請求接口的封裝

  • App應(yīng)用程序通過 Retrofit 請求網(wǎng)絡(luò),實際上是使用 Retrofit 接口層封裝請求參數(shù)、Header、Url 等信息,之后由 OkHttp 完成后續(xù)的請求操作

  • 在服務(wù)端返回數(shù)據(jù)之后,OkHttp 將原始的結(jié)果交給 Retrofit,Retrofit根據(jù)用戶的需求對結(jié)果進行解析

Hook

因為他的下層是 okhttp, 所以 hook okhttp 那一套一樣的可以 hook Retrofit

關(guān)于“Retrofit怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。


新聞標題:Retrofit怎么使用
鏈接URL:http://weahome.cn/article/jhdose.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部