成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

[原創(chuàng)]Retrofit使用教程(二)

wanghui / 3430人閱讀

摘要:上一篇文章講述了的簡單使用這次我們學(xué)習(xí)一下的各種請求基礎(chǔ)在中使用注解的方式來區(qū)分請求類型比如表示一個請求括號中的內(nèi)容為請求的地址格式含義表示這是一個請求表示這個一個請求表示這是一個請求表示這是一個請求表示這是一個請求表示這是一個請求表示這是

上一篇文章講述了Retrofit的簡單使用,這次我們學(xué)習(xí)一下Retrofit的各種HTTP請求.

Retrofit基礎(chǔ)

在Retrofit中使用注解的方式來區(qū)分請求類型.比如@GET("")表示一個GET請求,括號中的內(nèi)容為請求的地址.

格式 含義
@GET 表示這是一個GET請求
@POST 表示這個一個POST請求
@PUT 表示這是一個PUT請求
@DELETE 表示這是一個DELETE請求
@HEAD 表示這是一個HEAD請求
@OPTIONS 表示這是一個OPTION請求
@PATCH 表示這是一個PAT請求
基本的HTTP請求

Retrofit可實現(xiàn)基本HTTP請求,包括GET,POST,PUT,DELETE等.

1.GET請求

@GET("/record")
Call getResult();

2.POST請求

@POST("/record")
Call getResult();

3.PUT請求

@PUT("/record")
Call getResult();

4.DELETE請求

@DELETE("/record")
Call getResult();
服務(wù)器接口類型

服務(wù)器接口有很多中,本人經(jīng)驗有限,目前接觸較多為以下幾種:

直接請求型

即直接對某一地址或組合某一地址發(fā)起請求

如:對/result/result/{id}發(fā)起GET請求,其中{id}中的id在實際使用時填寫實際值即可.

帶參查詢型

對某一地址進(jìn)行帶參查詢請求

如:https://www.baidu.com/s?wd=123為對接口https://www.baidu.com/s進(jìn)行參數(shù)為wd=123GET查詢請求.

帶Header型

 即請求時要求帶上Header

Retrofit中如何寫? 直接請求型

1.如果是直接請求某一地址,寫法如下:

@GET("/record")
Call getResult();

2.如果是組合后直接請求,如/result/{id}寫法如下:

@GET("/result/{id}")
Call getResult(@Path("id") String id);
帶參查詢型

如12306的查詢接口https://kyfw.12306.cn/otn/lcxxcx/query?purpose_codes=ADULT&queryDate=2016-03-18&from_station=BJP&to_station=CDW,寫法如下:

@GET("/otn/lcxxcx/query")
Call query(@Query("purpose_codes") String codes, @Query("queryDate") String date,
    @Query("from_station") String from, @Query("to_station") String to)
帶Header型

比如要更新某個賬戶信息,其接口地址為/info,需要帶的Header有設(shè)備信息device,系統(tǒng)版本version,還要帶請求參數(shù)要更新賬戶的id,代碼如下:

@POST("/info")
Call updateInfo(@Header("device") String device, @Header("version") int version,
                        @Field("id") String id);

注:本想給每一種請求添加一個請求實例,但是確實不太好找.

實例

找了很久發(fā)現(xiàn)多說提供了一些POST請求接口,下面就以多說的接口為例,看一下如何使用Retrofit寫請求.

基礎(chǔ)URL

多說的接口基礎(chǔ)地址為:http://api.duoshuo.com,則構(gòu)建Retrofit實例代碼如下:

Retrofit retrofit = new Retrofit.Builder()
        .addConverterFactory(GsonConverterFactory.create())
        .baseUrl("http://api.duoshuo.com")
        .build();
獲取文章評論、轉(zhuǎn)發(fā)數(shù)

接口地址為:/threads/counts

HTTP請求方式:GET

請求示例為:http://api.duoshuo.com/threads/counts.json?short_name=official&threads=4ff1cbc43ae636b72a00001d

后面的.json為返回數(shù)據(jù)的格式,此處我們使用json格式.

請求代碼如下:

@GET("/threads/counts.json")
Call getCommit(@Query("short_name") String shortName,
                       @Query("threads") String threads);
匿名發(fā)表新評論

接口地址為:/posts/create

HTTP請求方式:POST

請求示例為:

Request URL:http://api.duoshuo.com/posts/create.json
Request Method:POST
Post Data:short_name=official&author_email=jp.chenyang%40gmail.com&author_name=Perchouli&thread_id=1152923703638301959&author_url=http%3A%2F%2Fduoshuo.com&message=匿名發(fā)表新評論

1.Field方式實現(xiàn)

    @FormUrlEncoded
    @POST("/posts/create.json")
    Call createCommit(@Field("secret") String secret,
                                    @Field("short_name") String shortName,
                                    @Field("author_email") String authorEmail,
                                    @Field("author_name") String authorName,
                                    @Field("thread_key") String threadKey,
                                    @Field("author_url") String author_url,
                                    @Field("message") String message);

2.Field Map實現(xiàn)方式

    @FormUrlEncoded
    @POST("/posts/create.json")
    Call createCommit(@FieldMap Map map);

獲取Map方式如下:

public class CommitParam {

    private String short_name;
    private String author_email;
    private String author_name;
    private String thread_id;
    private String author_url;
    private String message;

    public String getShort_name() {
        return short_name;
    }

    public void setShort_name(String short_name) {
        this.short_name = short_name;
    }

    public String getAuthor_email() {
        return author_email;
    }

    public void setAuthor_email(String author_email) {
        this.author_email = author_email;
    }

    public String getAuthor_name() {
        return author_name;
    }

    public void setAuthor_name(String author_name) {
        this.author_name = author_name;
    }

    public String getThread_id() {
        return thread_id;
    }

    public void setThread_id(String thread_id) {
        this.thread_id = thread_id;
    }

    public String getAuthor_url() {
        return author_url;
    }

    public void setAuthor_url(String author_url) {
        this.author_url = author_url;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public Map createCommitParams(){
        Map params = new HashMap<>();
        params.put("short_name", short_name);
        params.put("author_email", author_email);
        params.put("author_name", author_name);
        params.put("thread_id", thread_id);
        params.put("author_url", author_url);
        params.put("message", message);
        return params;
    }
}

項目地址在此:Dev-Wiki/RetrofitDemo

更多文章請移步我的博客:DevWiki Blog

重要說明

想隨時獲取最新博客文章更新,請關(guān)注公共賬號DevWiki,或掃描下面的二維碼:

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/65648.html

相關(guān)文章

  • [原創(chuàng)]Retrofit使用教程(一)

    摘要:公司開源了許多優(yōu)秀的庫,就是其中之一。是用來簡化訪問服務(wù)器,如果你的服務(wù)器使用的使,那么趕緊使用吧。官方的文檔是用的說明使用過程的,有的童鞋可能從沒用過的比如我,為了簡單易懂,這里我使用一個查詢手機歸屬地的來說明的使用過程。 Square公司開源了許多優(yōu)秀的庫,Retrofit就是其中之一。 Retrofit是用來簡化APP訪問服務(wù)器API,如果你的服務(wù)器使用的使RESTAPI,那么趕...

    codeGoogle 評論0 收藏0

發(fā)表評論

0條評論

wanghui

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<