在使用Retrofit时出现IllegalStateException的问题通常是因为没有正确配置Retrofit。以下是一个解决方法的示例:
dependencies {
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
}
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
public class ApiService {
private static Retrofit retrofit;
private static final String BASE_URL = "https://api.example.com/";
public static Retrofit getClient() {
if (retrofit == null) {
retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
}
return retrofit;
}
}
import retrofit2.Call;
import retrofit2.http.GET;
public interface ApiInterface {
@GET("data")
Call getData();
}
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
public class MainActivity extends AppCompatActivity {
private ApiInterface apiInterface;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
apiInterface = ApiService.getClient().create(ApiInterface.class);
Call call = apiInterface.getData();
call.enqueue(new Callback() {
@Override
public void onResponse(Call call, Response response) {
// 处理响应
}
@Override
public void onFailure(Call call, Throwable t) {
// 处理错误
}
});
}
}
确保你替换了BASE_URL为你的实际API地址,并根据需要调整数据响应类DataResponse。
这是一个基本的使用Retrofit的示例,你可以根据你的项目需求进行修改和调整。