我有以下API响应:
{
"data":{
"categoryFields":[
{
"name":"brand",
"label":"Marca",
"values":[
{
"key":53,
"value":"Alfa Romeo"
},
{
"key":55,
"value":"Audi"
}
]
},
{
"name":"year",
"label":"Año", ,
"dataType":"select",
"values":[
{
"key":2017,
"value":2017
},
{
"key":2016,
"value":2016
}
]
},
]
}
}
好的,在第一个categoryField
中,值为:
"key":53 INT,
"value":"Alfa Romeo", STRING
在第二个categoryField
中,值为:
"key":2017, INT
"value":2017, INT
另外还有另一种类型:
"key":"string", STRING
"value":"String", STRING
我需要一个可以处理这些类型数据的类。类似的东西:
public class Value {
@SerializedName("key")
@Expose
private DYNAMIC_TYPE key;
@SerializedName("value")
@Expose
private DYNAMIC_TYPE value;
}
我该怎么做?或者有一个Gson功能可以帮助我吗?
答案 0 :(得分:0)
解决方案
public class CategoryValueDeserializer implements JsonDeserializer<CategoryValue> {
@Override
public CategoryValue deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
final JsonObject jsonObject = json.getAsJsonObject();
final JsonElement jsonKey = jsonObject.get("key");
final String key = jsonKey.getAsString();
final JsonElement jsonValue = jsonObject.get("value");
final String value = jsonValue.getAsString();
CategoryValue categoryValue = new CategoryValue();
categoryValue.setKey(key);
categoryValue.setValue(value);
return categoryValue;
}
}
//改造
final Gson gson = new GsonBuilder()
.registerTypeAdapter(Response.class, new CategoryValueDeserializer())
.create();
Retrofit.Builder builder = new Retrofit.Builder()
.baseUrl(END_POINT)
.addConverterFactory(GsonConverterFactory.create(gson))
.addCallAdapterFactory(RxJavaCallAdapterFactory.create());
答案 1 :(得分:0)
这是一个可行的解决方案
首先创建如下所示的POJO类
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class KeyValuePair {
@SerializedName("key")
@Expose
private String key;
@SerializedName("value")
@Expose
private Object value;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}
然后让Gson正确地序列化此类,请使用此代码
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonPrimitive;
import java.lang.reflect.Type;
public class KeyValuePairDeserializer implements JsonDeserializer<KeyValuePair> {
@Override
public KeyValuePair deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
final JsonObject jsonObject = json.getAsJsonObject();
final JsonElement jsonKey = jsonObject.get("key");
final String key = jsonKey.getAsString();
final JsonElement jsonValue = jsonObject.get("value");
Object value = jsonValue.getAsString();
if (jsonValue.isJsonPrimitive()) {
JsonPrimitive jsonPrimitive = jsonValue.getAsJsonPrimitive();
if (jsonPrimitive.isBoolean())
value = jsonValue.getAsBoolean();
else if (jsonPrimitive.isString())
value = jsonValue.getAsString();
else if (jsonPrimitive.isNumber()){
value = jsonValue.getAsNumber();
}
}
KeyValuePair categoryValue = new KeyValuePair();
categoryValue.setKey(key);
categoryValue.setValue(value);
return categoryValue;
}
}
像这样向Gson注册适配器
Gson provideGson() {
return new GsonBuilder()
.registerTypeAdapter(KeyValuePair.class, new KeyValuePairDeserializer())
.create();
}
现在,您可以使用此类getter方法访问值
public String getString(String key) {
return (String) value;
}
public int getInt(String key) {
return ((Number) value).intValue();
}
public long getLong(String key) {
return ((Number) value).longValue();
}
public float getFloat(String key) {
return ((Number) value).floatValue();
}
public boolean getBoolean(String key) {
return (boolean) value;
}
答案 2 :(得分:0)
我总是有BE提供的类似dataType
的东西。然后,我可以根据其在反序列化期间的价值。您也有dataType
,但仅适用于Int, Int
情况。
好吧,我要做两件事之一:
dataType
。这对于具有许多参数且只有很少几种不同dataTypes的类型是好的。然后我有条件地基于JsonDeserializer
用dataType
反序列化到我需要的内容。isString
和其他方法进行检查,如在不同答案中所建议的。