Retrofit的简单使用

Posted 劲火星空

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Retrofit的简单使用相关的知识,希望对你有一定的参考价值。

一、概念



Retrofit与okhttp共同出自于Square公司,retrofit就是对okhttp做了一层封装。把网络请求都交给给了Okhttp,我们只需要通过简单的配置就能使用retrofit来进行网络请求了,其主要作者是Android大神JakeWharton



二、使用步骤

(1)gradle下导入正确的库,由于依赖于OkHttp,所以还有导入这个库

(2)定义一个接口,这个接口是用来规定请求参数的样式及提供请求参数

(3)创建Retrofit对象,通过对象和接口来创建请求队列并得到结果



 三、简单使用


 


 




1. 添加依赖

 compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'

2. 创建接口

public interface APi 

    @Headers("apikey:81bf9da930c7f9825a3c3383f1d8d766")
    @GET("word/word")
    Call<News> getNews(@Query("num") String num,@Query("page")String page);


3. 创建对象

Retrofit retrofit = new Retrofit.Builder()
        //使用自定义的mGsonConverterFactory
        .addConverterFactory(GsonConverterFactory.create())
        .baseUrl("http://apis.baidu.com/txapi/")
        .build();
mApi = retrofit.create(APi.class);

4. 请求

mApi = retrofit.create(APi.class);
Call<News> news = mApi.getNews("1", "10");
news.enqueue(new Callback<News>() 
    @Override
    public void onResponse(Call<News> call, Response<News> response) 

    

    @Override
    public void onFailure(Call<News> call, Throwable t) 

    
);
以上就是简单使用的过程



四、请求方式



主要有一下几种请求方法

格式含义
@GET表示这是一个GET请求
@POST表示这个一个POST请求
@PUT表示这是一个PUT请求
@DELETE表示这是一个DELETE请求
@HEAD表示这是一个HEAD请求
@OPTIONS表示这是一个OPTION请求
@PATCH表示这是一个PAT请求

各种请求注解的意思

格式含义
@Headers添加请求头
@Path替换路径
@Query替代参数值,通常是结合get请求的
@FormUrlEncoded用表单数据提交
@Field替换参数值,是结合post请求的



五、Get请求



加入我们想请求这样的网址:http://apis.baidu.com/txapi/world/world?num=10&page=1,header为"apikey:81bf9da930c7f9825a3c3383f1d8d766"

我们可以这样请求:


(1)接口这样定义

@Headers("apikey:81bf9da930c7f9825a3c3383f1d8d766")
    @GET("word/word")
    Call<News> getNews(@Query("num") String num,@Query("page")String page);


(2)代码请求中这样定义

//创建retrofit对象
Retrofit retrofit = new Retrofit.Builder()
        //使用自定义的mGsonConverterFactory
        .addConverterFactory(GsonConverterFactory.create())
        .baseUrl("http://apis.baidu.com/txapi/")
        .build();
// 实例化我们的mApi对象
mApi = retrofit.create(APi.class); 

// 调用我们的响应的方法
Call<News> news = mApi.getNews(number, page);
news.enqueue(new Callback<News>() 
    @Override
    public void onResponse(Call<News> call, Response<News> response) 
        News body = response.body();
        Logger.i("onResponse:   ="+body.toString());
    

    @Override
    public void onFailure(Call<News> call, Throwable t) 
        Logger.i("onResponse:   ="+t.getMessage());

    
);

假设BaseUrl是http://apis.baidu.com/txapi/的前提下

(1)其中 @GET("word/word")会追加到baseUrl :http://apis.baidu.com/txapi/的后面,即变成:http://apis.baidu.com/txapi/world/world

(2)@Query("num") String num,@Query("page")String page;分别对应键值的名称与值。会追加到http://apis.baidu.com/txapi/world/world的后面,请求网址即变成:http://apis.baidu.com/txapi/world/world?num=10&page=1

(3) @Headers("apikey:81bf9da930c7f9825a3c3383f1d8d766")是 在基础之上为 其添加响应头

(4)如果想继续增加参数,只需要在方法参数追加这样的形式就OK了:@Query("page")String page

  @Headers("apikey:81bf9da930c7f9825a3c3383f1d8d766")
  @GET("word/word")
  Call<News> getNews(@Query("num") String num,@Query("page")String page,@Query("type") String type);
(5)加入我们想要请求这样的网址http://apis.baidu.com/txapi/tiyu/tiyu?num=10&page=1,,我们可以这样写

    @Headers("apikey:81bf9da930c7f9825a3c3383f1d8d766" ,"Content-Type:application/json")
    @GET("type/type")
    Call<News> tiYu(@Path("type") String type, @Query("num") String num,@Query("page")String page);
    String type="tiyu";
    Call<News> news = api.tiYu(type,number, page);


六、Post请求



假如我们想要 请求这样的网址http://apis.baidu.com/txapi/world/world?以post的 方式提交这样的 数据:num=10&page=1,我们可以写成 如下的 样子,注意post的时候必须使用@Field这种形式的注解,而不是使用@Query这种形式的注解,其他的 与get请求一样,这样只给出核心代码
@FormUrlEncoded
@Headers("apikey:81bf9da930c7f9825a3c3383f1d8d766" ,"Content-Type:application/json")
@POST("world/world")
Call<News> postNews(@Field("num") String num, @Field("page")String page);
Header是添加请求头

(2)通过post提交Json数据

有时提交的数据量比较大时,用键值对的方式提交参数不太方便,Retrofit可以通过@Body注释,直接传递一个对象给请求主体,Retrofit通过JSON转化器,把对象映射成JSON数据。

假设我们需要提交的数据为


    "id": 1,
    "text": "my task title"

接口定义如下

public interface TaskService   
  @Headers("Content-Type: application/json","Accept:  application/json")
  @POST("/tasks")
  Call<Task> createTask(@Body Task task);


实体的Model如下

public class Task   
  private long id;
  private String text;

  public Task() 
  public Task(long id, String text) 
      this.id = id;
      this.text = text;
  


客户端调用

Task task = new Task(1, "my task title");  
Call<Task> call = taskService.createTask(task);  
call.enqueue(new Callback<Task>() );

最终结果如下


  "id": 1,
  "text": "my task title"





尊重作者,尊重原创,参考文章:

原作者将的更加的详细,请参看

http://www.jianshu.com/p/82f8b58db53c





以上是关于Retrofit的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Retrofit 中将 InputStream 作为请求的主体发布?

Retrofit的简单使用

基于RxJava2+Retrofit2的简单易用网络请求框架

Retrofit之请求参数

Retrofit简单使用(小白都会了)

Retrofit的简单使用