Voglio analizzare gli array JSON e usare gson. In primo luogo, posso registrare l'output JSON, il server risponde chiaramente al client.
Ecco il mio output JSON:
[
{
id : '1',
title: 'sample title',
....
},
{
id : '2',
title: 'sample title',
....
},
...
]
Ho provato questa struttura per l'analisi. Una classe, che dipende dal singolo array
e ArrayList
per tutti JSONArray.
public class PostEntity {
private ArrayList<Post> postList = new ArrayList<Post>();
public List<Post> getPostList() {
return postList;
}
public void setPostList(List<Post> postList) {
this.postList = (ArrayList<Post>)postList;
}
}
Post class:
public class Post {
private String id;
private String title;
/* getters & setters */
}
Quando provo a usare gson nessun errore, nessun avviso e nessun registro:
GsonBuilder gsonb = new GsonBuilder();
Gson gson = gsonb.create();
PostEntity postEnt;
JSONObject jsonObj = new JSONObject(jsonOutput);
postEnt = gson.fromJson(jsonObj.toString(), PostEntity.class);
Log.d("postLog", postEnt.getPostList().get(0).getId());
Cosa c'è che non va, come posso risolvere?