我正在尝试将JSON解析为Object。有两个类:User和Profile。用户获得了个人资料的实例。
所以现在有一个JSON来构建用户对象。在这个JSON中是列出的User和Profile的属性,正如你所看到的,Profile和User都得到了一个名为List的HashMap。但是我想从这个Json中创建用户和配置文件,但我得到了这个例外:
//编辑:
我从个人资料和用户中删除了Map<String, String> links
。所以现在我没有得到任何错误,每个用户都有一个配置文件 - 但我仍然需要这些地图。是否有可能GSON无法区分json中的两个列表资源,因为它们具有相同的名称?
// Dirty Hack解决方案: ArrayList而不是HashMap没有问题。但是我决定“手动”解析Json的这一部分,将对象插入到我的HashMap中。
01-03 05:27:59.580: E/AndroidRuntime(4313): com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 12
01-03 05:27:59.580: E/AndroidRuntime(4313): at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:180)
用户:
public class User {
private String username;
private String slug;
private String email;
private Boolean emailVerified;
private Profile profile;
Map<String, String> links;
public User()
{
this.username = null;
this.slug = null;
this.email = null;
this.emailVerified = null;
this.profile = null;
this.links = new HashMap<String, String>();
}
public String getUsername(){
return this.username;
}
public String getSlug(){
return this.slug;
}
public String getEmail(){
return this.email;
}
public Boolean getEmailVerified(){
return this.emailVerified;
}
public Profile getProfile(){
return this.profile;
}
}
资料:
public class Profile {
private Map<String, String> links;
private String name;
private String description;
private String gender;
private String status;
private String timezone;
private Bitmap icon;
public Profile()
{
this.name = null;
this.description = null;
this.gender = null;
this.status = null;
this.timezone = null;
this.links = new HashMap<String, String>();
}
public String getName(){
return this.name;
}
public String getDescription(){
return this.description;
}
public String getGender(){
return this.gender;
}
public String getStatus(){
return this.status;
}
public String getTimezone(){
return this.timezone;
}
}
示例JSON:
{ "email" : "foo@bar.com",
"emailVerified" : true,
"links" : [ { "href" : "http://xxx.de/api/users/4f3a73004bb67751bc000011",
"rel" : "self"
},
{ "href" : "http://xxx.de:/api/users/4f3a73004bb67751bc000011/followers",
"rel" : "https://xxx.com/rels/collection/follower"
},
{ "href" : "http://xxx.de/api/users/4f3a73004bb67751bc000011/friends",
"rel" : "https://xxx.com/rels/collection/friend"
},
{ "href" : "http://xxx.de/api/users/4f3a73004bb67751bc000011/activity_stream",
"rel" : "https://xxx.com/rels/activity_stream"
}
],
"profile" : { "description" : "",
"gender" : "male",
"links" : [ { "href" : "xxx.de/uploads/profile_images/xxx.png",
"rel" : "https://xxx.com/rels/image"
},
{ "href" : "http://xxx.de/api/users/xxx/profile",
"rel" : "self"
}
],
"name" : "Foo Bar",
"status" : "Status",
"timezone" : "CET"
},
"slug" : "foobaar",
"username" : "foobaar"
}
访问方法:
public static User parseUser(String json) {
JSONObject jsonObject;
Gson gson = new Gson();
try {
jsonObject = new JSONObject(json);
Log.v(TAG,jsonObject.toString(2));
User u = gson.fromJson(jsonObject.toString(), User.class);
return u;
} catch (JSONException e){
Log.e(TAG, "There was an error parsing the JSON (USER)" + e);
}
return null;
}
我的错误在哪里?我可以使用GSON这样的HashMap吗?提前致谢
答案 0 :(得分:2)
使用Gson反序列化器类。它们非常简单:
要使其工作,您必须确保解析器不会尝试序列化侵权对象 (在这种情况下你的地图)。我会将你的地图对象重命名为_links或者某些东西,所以序列化程序会跳过它。对于你的个人资料也做同样的事情。
完成后,必须对其进行反序列化,并确保在gson对象中包含反序列化器:
User u;
GsonBuilder gb = new GsonBuilder();
gb.registerTypeAdapter(User.class, new UserDeserializer());
Gson g = gb.create();
u = g.fromJson(json, User.class);
public class UserDeserializer implements JsonDeserializer<UserDeserializer>
{
@Override
public User deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
{
User u = g.fromJson(json, User.class);
JsonObject jo = (JsonObject)json;
JsonElement je = jo.get("links");
//iterate through the je element to fill your map.
}
}