我使用Retrofit for get和Parse Json但是我有问题
告诉我这个错误
java.lang.IllegalStateException:预期为BEGIN_ARRAY但在第1行第2行路径为BEGIN_OBJECT $
我的json
{
"status": "ok",
"item": [
{
"name": "joe"
},
{
"name": "jack"
},
{
"name": "sara"
}
]
}
我的界面
public interface api{
@GET("/api/get.php")
Call<List<Repo>> listRepos();
}
MainActivity
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(URL)
.addConverterFactory(JacksonConverterFactory.create())
.build();
api service = retrofit.create(api.class);
Call<List<Repo>> call = service.listRepos();
call.enqueue(this);
和
@Override
public void onResponse(Response<List<Repo>> response, Retrofit retrofit) {
// specify an adapter (see also next example)
mAdapter = new RepoAdapter(response.body());
mRecyclerView.setAdapter(mAdapter);
for (Repo repo : response.body()) {
Log.i(TAG, repo.getName());
}
}
@Override
public void onFailure(Throwable t) {
Toast.makeText(MainActivity.this, t.getLocalizedMessage(), Toast.LENGTH_SHORT).show();
Log.e(TAG,t.getMessage());
}
我的模特
public class Repo {
private String name;
private String status;
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
我无法解析 有谁能够帮我。感谢
答案 0 :(得分:0)
您的改造界面需要一个列表,但这不是您的API返回的内容。您需要一个可以正确表示响应主体的类,例如:
class ListReposResponse {
String status;
List<Repo> item;
}
然后,您的改造方法需要返回该类而不是List<Repo>
。
@GET("/api/get.php")
Call<ListReposResponse> listRepos();