如何用GSON解析动态JSON字段?

时间:2011-04-26 21:57:09

标签: java json api gson

所以我使用GSON来解析API中的JSON,并且如何解析数据中的动态字段一直困难。

以下是查询返回的JSON数据示例:

{

-
30655845: {
    id: "30655845"
    name: "testdata
    description: ""
    latitude: "38"
    longitude: "-122"
    altitude: "0"
    thumbnailURL: http://someimage.com/url.jpg
    distance: 9566.6344386665
}
-
28688744: {
    id: "28688744"
    name: "testdata2"
    description: ""
    latitude: "38"
    longitude: "-122"
    altitude: "0"
    thumbnailURL: http://someimage.com/url.jpg
    distance: 9563.8328713012
}
}

我目前处理单个静态值的方法是使用类:

import com.google.gson.annotations.SerializedName;

public class Result 
{
@SerializedName("id")
public int id;

@SerializedName("name")
public String name;

@SerializedName("description")
public String description;

@SerializedName("latitude")
public Double latitude;

@SerializedName("longitude")
public Double longitude;

@SerializedName("altitude")
public Double altitude;

@SerializedName("thumbnailURL")
public String thumbnailURL;

@SerializedName("distance")
public Double distance;
}

然后我可以简单地使用GSON解析:

Gson gson = new Gson();

Reader reader = new InputStreamReader(source);

Result response= gson.fromJson(reader, Result.class);

我知道这可以在子数据上工作,因为我可以查询并获得单个条目并且很容易解析,但是为数组中的每个值给出的随机整数值呢? (即30655845和2868874)

任何帮助?

1 个答案:

答案 0 :(得分:22)

根据GSON documentation,您可以执行以下操作:

Type mapType = new TypeToken<Map<Integer, Result> >() {}.getType(); // define generic type
Map<Integer, Result> result= gson.fromJson(new InputStreamReader(source), mapType);

或者您可以尝试为您的班级写custom serializer

免责声明:我也没有使用GSon的经验,但没有像Jackson这样的其他框架。