无法为 java.util.List Retrofit 2.0.0-beta2 创建转换器
我只是在做一个GET请求,但我得到这个错误:
java.lang.RuntimeException:无法启动 Activity ComponentInfo{com.example.yomac_000.chargingpoint/com.example.yomac_000.chargingpoint.AllStores}: java.lang.IllegalArgumentException: Unable to create converter for java.util.List
这是因为这行代码:
Call<List<Store>> call = subpriseAPI.listStores(response);
所以我尝试了这行代码,看看它是什么类型:
System.out.println(subpriseAPI.listStores(response).getClass().toString());
但后来我得到了同样的错误,所以它不会让我知道它是什么类型。在下面,您可以看到我的代码。
商店服务.java:
public class StoreService {
public static final String BASE_URL = "http://getairport.com/subprise/";
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.build();
SubpriseAPI subpriseAPI = retrofit.create(SubpriseAPI.class);
String response = "";
public List<Store> getSubprises() {
Call<List<Store>> call = subpriseAPI.listStores(response);
try {
List<Store> listStores = call.execute().body();
System.out.println("liststore "+ listStores.iterator().next());
return listStores;
} catch (IOException e) {
// handle errors
}
return null;
}
}
SubpriseAPI.java:
public interface SubpriseAPI {
@GET("api/locations/get")
Call<List<Store>> listStores(@Path("store") String store);
}
商店.java:
public class Store {
String name;
}
我使用的是改造版本2.0.0-beta2。