Retrofit 是一個(gè)用于訪問 REST API 的開源庫。下面是使用 Retrofit 框架的基本步驟:
implementation 'com.squareup.retrofit2:retrofit:2.x.x'
implementation 'com.squareup.retrofit2:converter-gson:2.x.x' // 如果你需要使用 Gson 進(jìn)行數(shù)據(jù)轉(zhuǎn)換
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();
// 處理響應(yīng)數(shù)據(jù)
} else {
// 處理錯(cuò)誤
}
}
@Override
public void onFailure(Call<List<User>> call, Throwable t) {
// 處理錯(cuò)誤
}
});
以上就是使用 Retrofit 框架的基本步驟。你還可以使用其他功能,如添加請求頭、使用 RxJava 進(jìn)行異步操作等。具體的用法可以參考 Retrofit 的官方文檔。