我想我的Json加載到我班JSON GSON.fromJson Java對象
public User() {
this.fbId = 0;
this.email = "";
this.name = "";
this.thumb = "";
this.gender = "";
this.location = "";
this.relationship = null;
this.friends = new ArrayList();
}
{
users:{
user:{
name:'the name',
email:'[email protected]',
friends:{
user:{
name:'another name',
email:'[email protected]',
friends:{
user:{
name:'yet another name',
email:'[email protected]'
}
}
}
}
}
}
}
我努力讓GSON用戶信息加載到上述Java對象用下面的代碼
User user = gson.fromJson(this.json, User.class);
這是XML,JSON不,夥計。 ...好的,你編輯了你的問題。向我們展示JSON!另外,這是一個構造函數,而不是一個類。 – 2011-03-15 16:33:41
對不起有代碼段的惡夢lol – Deviland 2011-03-15 16:35:30
閱讀http://stackoverflow.com/editing-help。這只是Markdown。 – 2011-03-15 16:36:15