最近在想能不能把之前项目里的网络请求改下

想通过Retrofit重构下,因为Retrofit完美兼容Rxjava后面会用到Rxjava

所以

开个坑写点

由于网上Retrofit 2.0的架构介绍很详细。所以我这里只提供我遇到的一些问题和解决的方法

先要依赖

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

  

然后,首先要使用Retrofit进行网络请求,你必须建立一个请求接口类 ApiService

public interface ApiService {
/* @GET("service/getIpInfo.php")
Call<GetIpInfoResponse> getIpInfo(@Query("ip") String ip);*/ @GET("service/getIpInfo.php")
Observable<GetIpInfoResponse> getIpInfo(@Query("ip") String ip);
}

对于上面的代码他分两部分,总的来说

第一部分@  他采用注解的方式,@表明你所要使用的网络请求。比如我上面用的是Get请求我就@GET 然后后面需要带请求URL的一部分

   然后问题来了,我这个URL要放哪一部分呢。根据我的查证,①你可以全部放一个完整的请求URL地址,这种情况当你在下面建立Retrofit实例类的时候他的.baseUrl(“yourURL”)这个方法里面的URL串就会没有作用;

                              ②你放地址的一部分,但是要保证建立Retrofit类的.baseUrl(“yourURL”)这个你的URL要和你在上面方法里放一部分地址连接起来他们能成为一个合法的

                              完整URL地址。而且,你还要满足在使用.baseUrl()方法的时候,你的这个Url参数要是以 / 结尾的地址!

Ps:对于多个请求参数的写法

  

    @POST("server?")
Call<GetLoginJson> Login(@Query("command") String login,
@Query("posModel") String posModel,
@Query("posSn") String posSn,
@Query("posMac") String posMac,
@Query("userId") String userId,
@Query("passWord") String passWord,
@Query("Version") String Version};

第二部分 就是下面接口给外部提供的方法 这个方法也分为两种写法,第一种写法是返回为Call类型回调,我们看代码(注:这个Call回调的方法和上面注释的接口对应)

  

Retrofit mRetrofit = new Retrofit.Builder() //Retrofit采用典型的Builder模式
.baseUrl("http://ip.taobao.com")  //接着写入你的URl地址
   .addConverterFactory(GsonConverterFactory.create()) // 新建一个Gson转换器
     .build(); ApiService apiService = retrofit.create(ApiService.class); //实例化ApisService       Call<GetIpInfoResponse> call = apiService.getIpInfo("63.223.108.42");  //调用接口方法      /**将call接入线程队列中,然后实例化他的callBacl*/
call.enqueue(new Callback<GetIpInfoResponse>() {
@Override
public void onResponse(Response<GetIpInfoResponse> response, Retrofit retrofit) {
GetIpInfoResponse getIpInfoResponse = response.body(); //将返回的数据取出,赋值给返回接收类中(这个下面讲)
mTvContent.setText(getIpInfoResponse.data.country);
} @Override
public void onFailure(Throwable t) {
mTvContent.setText(t.getMessage());
}
});

以上代码就是Retrofit的完整的使用流程,看完之后你就会发现我有一个类没有贴出,那就是GetIpInfoResponse

为什么会有这个类呢,这个类是为了和通信成功后返回了成功值做匹配,返回的数据和他是有关系的,而且他的参数和写法是由返回值决定的。我们来看下代码

public class GetIpInfoResponse extends BaseResponse {
public IpInfo data;
} public class IpInfo {
public String country;
public String country_id;
public String area;
public String area_id;
public String ip;
}

我们可以将上面的URl输入到网址看看返回的是什么,http://ip.taobao.com/service/getIpInfo.php ; 但是如果没错应该是{"code":1,"data":"no ip param."},这个没有数据返回应该是和没有在手持机上测试有关系

所以他的返回类参数就是Json返回的参数,所以这里的data就对应返回关键字为 data 的数据,而这个数据的数据参数如IpInfo这个类,至此Retrofit的使用差不多就这么多;(应该没什么遗漏吧)

然后下面是和Rxjava一起使用的情况 Retrofit他的使用(注:和Rxjava的时候ApiService为第二个未注释的方法,我这里偷懒了两个都放在一个文件里)

        Retrofit retrofit = new Retrofit.Builder()
.baseUrl(“youUrl”)
.addConverterFactory(GsonConverterFactory.create())
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.build();
ApiService apiService = retrofit.create(ApiService.class);
apiService.getIpInfo("63.223.108.42")
.subscribeOn(Schedulers .io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Subscriber<GetIpInfoResponse>() {
@Override
public void onCompleted() { } @Override
public void onError(Throwable e) {
mTvContent.setText(e.getMessage());
} @Override
public void onNext(GetIpInfoResponse getIpInfoResponse) {
mTvContent.setText(getIpInfoResponse.data.country);
}
});

对于和Rxjava联合使用的好处,那就是我们可以很方便的控制线程开关

然后使用Retrofit可以使逻辑更加清晰,代码更加简洁和Rxjava联合使用减少了很多秘制缩进的问题

Retrofit 2.0使用的更多相关文章

  1. Android Retrofit 2.0 使用-补充篇

    推荐阅读,猛戳: 1.Android MVP 实例 2.Android Retrofit 2.0使用 3.RxJava 4.RxBus 5.Android MVP+Retrofit+RxJava实践小 ...

  2. Retrofit 2.0 超能实践(四),完成大文件断点下载

    作者:码小白 文/CSDN 博客 本文出自:http://blog.csdn.net/sk719887916/article/details/51988507 码小白 通过前几篇系统的介绍和综合运用, ...

  3. Retrofit 2.0 超能实践(三),轻松实现文件/多图片上传/Json字符串

    文:http://blog.csdn.net/sk719887916/article/details/51755427 Tamic 简书&csdn同步 通过前两篇姿势的入门 Retrofit ...

  4. Retrofit 2.0 超能实践(一),okHttp完美支持Https传输

    http: //blog.csdn.net/sk719887916/article/details/51597816 Tamic首发 前阵子看到圈子里Retrofit 2.0,RxJava(Andro ...

  5. Retrofit 2.0 超能实践,完美支持Https传输

    http://blog.csdn.NET/sk719887916/article/details/51597816 前阵子看到圈子里Retrofit 2.0,RxJava(Android), OkHt ...

  6. android -------- Retrofit + RxJava2.0 + Kotlin + MVP 开发的 WanAndroid 项目

    简介 wanandroid项目基于 Retrofit + RxJava2.0 + Kotlin + MVP 用到的依赖 implementation 'io.reactivex.rxjava2:rxj ...

  7. Retrofit 2.0基于OKHttp更高效更快的网络框架 以及自定义转换器

    时间关系,本文就 Retrofit 2.0的简单使用 做讲解  至于原理以后有空再去分析 项目全面.简单.易懂  地址: 关于Retrofit 2.0的简单使用如下:  https://gitee.c ...

  8. Android Retrofit 2.0使用

    实例带你了解Retrofit 2.0的使用,分享目前开发Retrofit遇到的坑和心得. 添加依赖 app/build.gradle 1 compile 'com.squareup.retrofit2 ...

  9. Retrofit 2.0 使用详细教程

    文章来自:https://blog.csdn.net/carson_ho/article/details/73732076 前言 在Andrroid开发中,网络请求十分常用 而在Android网络请求 ...

随机推荐

  1. android 自定义控件

    学习参考:http://blog.csdn.net/hudashi/article/details/50913257 http://blog.csdn.net/gebitan505/article/d ...

  2. PythonDay02

    >三目运算符 简单的if---else---语句 result = 1234 if 1 > 2 else 4321 print(result) >集合 set集合,是一个无序且不重复 ...

  3. input/select/textarea标签的readonly效果实现

    首先说一下readonly属性的应用场景 表单中,不能编辑对应的文本,但是仍然可以聚焦焦点 在提交表单的时候,该输入项会作为form的一项提交(目的) 这里要说一下disabled和readonly的 ...

  4. SpringMvc自定义拦截器

    SpringMvc也可以使用拦截器对请求进行拦截处理,用户可以自定义拦截器来实现特定的功能,自定义拦截器必须实现HandlerInterceptor接口 -preHandle():这个方法在业务处理器 ...

  5. mfc ui 3 swf

    引用:http://zhidao.baidu.com/question/420956871.html 作为一个自定义的资源导入,然后用LoadResource载入导入的资源.MAKEINTRESOUR ...

  6. 函数nvl 和decode

    decode(nvl(kkc.category, 'one'),'one','普通','two','精品','three','行业','four','白金')

  7. 16. 星际争霸之php设计模式--组合模式

    题记==============================================================================本php设计模式专辑来源于博客(jymo ...

  8. volatile使用详解

    Java 语言中的 volatile 变量可以被看作是一种 “程度较轻的 synchronized”:与 synchronized 块相比,volatile 变量所需的编码较少,并且运行时开销也较少, ...

  9. Dynamics AX 2012 R2 RemoteApp导出项目报错

        今天,Reinhard使用RemoteApp的方式登陆AX开发环境,对项目文件进行修改后,习惯性地将项目导出到Reinhard的电脑上,做个备份.但是导出时弹出错误提示框,报以下错误:     ...

  10. php之XML转数组函数的方法

    <?/** * xml2array() will convert the given XML text to an array in the XML structure. * Link: htt ...