美文网首页
Retrofit 2.4.0版本入门使用学习

Retrofit 2.4.0版本入门使用学习

作者: 我真的很方 | 来源:发表于2018-08-12 21:27 被阅读0次

    1. 在 Gradle加入Retrofit库的依赖

    由于Retrofit是基于OkHttp,所以还需要添加OkHttp库依赖

    在build.gradle中添加

    dependencies {   

    ……//其他依赖

    implementation 'com.squareup.retrofit2:retrofit:2.4.0' // Retrofit库

    implementation 'com.squareup.okhttp3:okhttp:3.11.0' // Okhttp库

    ……//其他依赖

    }

    2. 添加 网络权限 

    在AndroidManifest.xml 

    <uses-permission android:name="android.permission.INTERNET"/>

    3. 创建 接收服务器返回数据 的类

    public class Reception {

        ...    // 根据返回数据的格式和数据解析方式(Json、XML等)定义

        // 下面会在实例进行说明

            }

    例如:

    public class Reception <T>{

     int code;//请求结果

     T data;//返回数据类型

     String msg;//请求结果含义或信息

    }

    4.创建 用于描述网络请求 的接口

    Retrofit将 Http请求 抽象成 Java接口:采用 注解 描述网络请求参数 和配置网络请求参数 

    public interface PostRequest{

        @POST("userauth/update/info")//注解,使用POST方法。里面的字符串是指衔接在baseUrl后面的部分

        Call<Reception> getCall(@Body Request request);

        //Reception是用于存储服务器返回数据,Request是客户端需要发送的数据

    }

    5.使用Retrofit 请求

    //第一步,实例化Retrofit对象

    private static Retrofit retrofit =new Retrofit.Builder()

            .baseUrl(http://120.77.32.233/qmkl1.0.0/)// 设置 网络请求Url:(私人服务器,举个栗子)

            .addConverterFactory(GsonConverterFactory.create())//返回数据的解析方法:设置使用Gson解析(记得加入依赖),

            .build();

    //第二步,创建 网络请求接口实例 及 网络请求数据实例

    PostRequest request = retrofit.create(PostRequest .class);//根据具体API接口封装请求路径

    Request request = new Request(……);//根据具体API接口封装请求参数

    //第三步 发送请求封装

    Call<Reception> call = request.getCall(request);

    //第四步,发送网络请求

    A.异步方法

     call.enqueue(new Callback<Reception>() {

                //请求成功时回调            

            @Override            

            public void onResponse(Call<Reception> call, Response<Reception> response) {

                         //请求成功,处理输出结果                

                        response.body().show();//response.body()即为返回的主体,show为自定义展示方法

                }

                //请求失败时候的回调            

                @Override           

                public void onFailure(Call call, Throwable throwable) {

                          System.out.println("连接失败");

                }

            });

    B.同步方法

    // 发送网络请求(同步)

    Response response = call.execute();

    相关文章

      网友评论

          本文标题:Retrofit 2.4.0版本入门使用学习

          本文链接:https://www.haomeiwen.com/subject/nrlebftx.html