Retrofit 是一个用于访问 REST API 的开源库。下面是使用 Retrofit 框架的基本步骤:
implementation 'com.squareup.retrofit2:retrofit:2.x.x'
implementation 'com.squareup.retrofit2:converter-gson:2.x.x' // 如果你需要使用 Gson 进行数据转换
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.example.com/")
.addConverterFactory(GsonConverterFactory.create())
.build();
public interface ApiService {
@GET("users")
Call<List<User>> getUsers();
@POST("users")
Call<User> createUser(@Body User user);
}
ApiService apiService = retrofit.create(ApiService.class);
Call<List<User>> call = apiService.getUsers();
call.enqueue(new Callback<List<User>>() {
@Override
public void onResponse(Call<List<User>> call, Response<List<User>> response) {
if (response.isSuccessful()) {
List<User> users = response.body();
// 处理响应数据
} else {
// 处理错误
}
}
@Override
public void onFailure(Call<List<User>> call, Throwable t) {
// 处理错误
}
});
以上就是使用 Retrofit 框架的基本步骤。你还可以使用其他功能,如添加请求头、使用 RxJava 进行异步操作等。具体的用法可以参考 Retrofit 的官方文档。