我今天在一个不同的问题中问过这个问题,但是我担心因为它的措辞而没有得到任何解决方案。
我有一个json输入,其中包含以下数据:
如您所见, option_value 项是一个对象中的Array和另一个对象中的简单字符串。
如何让Gson正确处理?我的类将其描述为List对象,因此它适用于 option_value 是数组的前几个项目,但当它变为字符串时,应用程序崩溃,我得到 json解析异常。
有解决方法吗?
更新
按要求添加班级的相关部分:
public class Options
{
String product_option_id;
String option_id;
String name;
String type;
String required;
List<OptionValue> option_value;
// get set stuff here
public class OptionValue
{
String product_option_value_id;
String option_value_id;
String name;
String image;
String price;
String price_prefix;
// get set stuff here
}
}
答案 0 :(得分:23)
我有一个解决方案:)为此,我们应该使用自定义反序列化器。像这样重写你的课程:
public class Options{
@SerializedName ("product_option_id");
String mProductOptionId;
@SerializedName ("option_id");
String mOptionId;
@SerializedName ("name");
String mName;
@SerializedName ("type");
String mType;
@SerializedName ("required");
String mRequired;
//don't assign any serialized name, this field will be parsed manually
List<OptionValue> mOptionValue;
//setter
public void setOptionValues(List<OptionValue> optionValues){
mOptionValue = optionValues;
}
// get set stuff here
public class OptionValue
{
String product_option_value_id;
String option_value_id;
String name;
String image;
String price;
String price_prefix;
// get set stuff here
}
public static class OptionsDeserilizer implements JsonDeserializer<Options> {
@Override
public Offer deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
Options options = new Gson().fromJson(json, Options.class);
JsonObject jsonObject = json.getAsJsonObject();
if (jsonObject.has("option_value")) {
JsonElement elem = jsonObject.get("option_value");
if (elem != null && !elem.isJsonNull()) {
String valuesString = elem.getAsString();
if (!TextUtils.isEmpty(valuesString)){
List<OptionValue> values = new Gson().fromJson(valuesString, new TypeToken<ArrayList<OptionValue>>() {}.getType());
options.setOptionValues(values);
}
}
}
return options ;
}
}
}
在我们让gson解析json之前,我们应该注册我们的自定义反序列化器:
Gson gson = new GsonBuilder()
.registerTypeAdapter(Options.class, new Options.OptionsDeserilizer())
.create();
现在 - 只需致电:
Options options = gson.fromJson(json, Options.class);
答案 1 :(得分:3)
在我的情况下,具有相同名称的字段是“data”:{}或“data”:[ array_with_real_data ]。所以接受答案的代码需要稍微修改,如下所示:
@Override
public MyClass deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
throws JsonParseException {
MyClass bean = new Gson().fromJson(json, MyClass.class);
JsonObject jsonObject = json.getAsJsonObject();
if (jsonObject.has("data")) {
JsonArray array = jsonObject.getAsJsonArray("data");
if (array != null && !array.isJsonNull()) {
List<Data> data = new Gson().fromJson(array, new TypeToken<ArrayList<Data>>() {}.getType());
bean.realData = data;
}
}
return bean ;
}
希望有所帮助。