Ich möchte JSON-Arrays analysieren und gson verwenden. Erstens kann ich die JSON-Ausgabe protokollieren, der Server reagiert eindeutig auf den Client.
Hier ist meine JSON-Ausgabe:
[
{
id : '1',
title: 'sample title',
....
},
{
id : '2',
title: 'sample title',
....
},
...
]
Ich habe diese Struktur zum Parsen ausprobiert. Eine Klasse, die von Single array
und ArrayList
für alle JSONArray abhängt.
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;
}
}
Postklasse:
public class Post {
private String id;
private String title;
/* getters & setters */
}
Wenn ich versuche, gson zu verwenden, kein Fehler, keine Warnung und kein Protokoll:
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());
Was ist los, wie kann ich lösen?