How can I parse the json from this link using java (for a stand alone java application)? I tried gson & Jackson libraries, but they seem to have problems as the formatting of this json appears different.
How do you do it?
Given the popularity of facebook, I was hoping to find some jars/lib that can do this already. Recommendations with examples are most welcome. Thanks much.
Response.java
public class Response{
private List<Comments> commentslist;
public List<Comments> getCommentsList() {
return commentslist;
}
public void setCommentsList(List<Comments> commentslist) {
this.commentslist = commentslist;
}
}
Comments.java
public class Comments{
private Number count;
private List<Data> data;
public Number getCount(){
return this.count;
}
public void setCount(Number count){
this.count = count;
}
public List<Data> getData(){
return this.data;
}
public void setData(List<Data> data){
this.data = data;
}
}
From.java
public class From{
private Number id;
private String name;
public Number getId(){
return this.id;
}
public void setId(Number id){
this.id = id;
}
public String getName(){
return this.name;
}
public void setName(String name){
this.name = name;
}
}
Data.java
public class Data{
private Number created_time;
private From from;
private Number id;
private String message;
public Number getCreated_time(){
return this.created_time;
}
public void setCreated_time(Number created_time){
this.created_time = created_time;
}
public From getFrom(){
return this.from;
}
public void setFrom(From from){
this.from = from;
}
public Number getId(){
return this.id;
}
public void setId(Number id){
this.id = id;
}
public String getMessage(){
return this.message;
}
public void setMessage(String message){
this.message = message;
}
}
Failed Converstion Attempt using gson
Response response = gson.fromJson(contents, Response.class); //contents is json string
System.out.println(response.getCommentsList()); // comes back as null
If json is normal, is something wrong with my java models?