retrofit簡單的網路請求

2021-07-28 00:11:15 字數 1159 閱讀 4239

目前retrofit速度最快,接下來是okhttp,最後是volley。

定義乙個介面

public inte***ce 

service

現在是模擬get請求,get後面帶的引數是網頁的子目錄,比如,www.baidu.com/api/cook/list,那get後面就帶/api/cook/list

而baseurl則是主目錄

//通過介面**的發射得到

//得到那個介面

call

<tngou

>list

=service.getlist();

list.enqueue

(this

);

會重寫到的方法

@override

public void

onresponse

(call

<tngou

>call

, response

<tngou

>response

) @override

public void

onfailure

(call

<tngou

>call

, throwable t)

Retrofit網路請求

retrofit 一 特點 效能最好,處理最快 使用rest api時非常方便 傳輸層預設就使用okhttp 支援nio 擁有出色的api文件和社群支援 速度上比volley更快 如果你的應用程式中整合了okhttp,retrofit缺省會使用okhttp處理其他網路層請求。預設使用gson 二 使...

retrofit的簡單使用 請求網路資料

倒入依賴 implementation com.squareup.retrofit2 converter gson 2.0.0 beta4 寫乙個網路資料的bean類 寫乙個所有介面都一樣的介面頭 方便呼叫 public class constant寫乙個介面 繼續拼接往介面頭後面拼接的介面 pub...

retrofit網路請求框架

android studio可引用gradle compile 整合retrofit compile com.squareup.retrofit2 retrofit 2.1.0 首先建立乙個inte ce請求介面 註解對應的包如下 import retrofit2.http.path 以下請求介面 ...