retrofit的简单使用(请求网络数据)

倒入依赖

implementation 'com.squareup.retrofit2:retrofit:2.0.2'
implementation 'com.squareup.okhttp3:okhttp:3.1.2'
implementation 'com.google.code.gson:gson:2.2.4'
implementation 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'

写一个网络数据的bean类

写一个所有接口都一样的接口头 方便调用

public class Constant {
    public static final String CONSTANT_GET = "https://www.zhaoapi.cn/";
}

写一个接口 继续拼接往接口头后面拼接的接口

public interface Api {
    @GET("product/getProducts")
    Call<UserBean> getCall(@Query("pscid") int id);
}

 MainActivity中的代码

创建一个retrofit对象将大部分一样的接口头部从constant类中拿出

Retrofit build = new Retrofit.Builder().baseUrl(Constant.CONSTANT_GET)
        .addConverterFactory(GsonConverterFactory.create())
        .build();
拼接上Api类中的地址部分
Api api = build.create(Api.class);
拼接上Api类中的id
Call<UserBean> call = api.getCall(1);
请求
call.enqueue(new Callback<UserBean>() {
    @Override
    public void onResponse(Call<UserBean> call, Response<UserBean> response) {

        String title = response.body().getData().get(0).getTitle();
        Toast.makeText(MainActivity.this,title,Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onFailure(Call<UserBean> call, Throwable t) {
        Toast.makeText(MainActivity.this,"失败",Toast.LENGTH_SHORT).show();
    }
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值