我第一次在这里发帖。
我服务器的json响应看起来像这样
{
"success": true,
"message": null,
"data": {
"id": 1,
"name": "1"
}
}
data
字段可以是List<MyModelClass>
,或者在上面的示例中它只是MyModelClass
,它只是一个对象。
json输出上的字段名称与我的所有POJO类完全匹配。
我的回复模板看起来像这样
import com.google.gson.annotations.Expose;
public class ResponseTemplate<T>{
@Expose
private boolean success;
@Expose
private String message;
@Expose
private T data;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
public T getData() {
return this.data;
}
}
然后从getData()
转换该数据我必须这样做
//.... this is inside a function
ResponseTemplate response = apiService.getMyObject();
if (response.isSuccess()) {
// if its a list
//Type dataType = new TypeToken<List<MyModelClass>>() {
//}.getType();
//if a single object
String toJson = gson.toJson(response.getData(), MyModelClass.class);
System.out.println(toJson);
new Gson().fromJson(gson.toJson(response.getData(), MyModelClass.class), MyModelClass.class);
} else {
return null;
}
那么它会给我一个错误
Exception in thread "main" java.lang.IllegalArgumentException: Can not set int field models.MyModelClass.id to com.google.gson.internal.LinkedTreeMap
at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:164)
at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:168)
at sun.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:55)
at sun.reflect.UnsafeIntegerFieldAccessorImpl.getInt(UnsafeIntegerFieldAccessorImpl.java:56)
at sun.reflect.UnsafeIntegerFieldAccessorImpl.get(UnsafeIntegerFieldAccessorImpl.java:36)
at java.lang.reflect.Field.get(Field.java:379)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.write(ReflectiveTypeAdapterFactory.java:86)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.write(ReflectiveTypeAdapterFactory.java:195)
at com.google.gson.Gson.toJson(Gson.java:593)
at com.google.gson.Gson.toJson(Gson.java:572)
at com.google.gson.Gson.toJson(Gson.java:527)
在这一行gson.toJson(response.getData(), MyModelClass.class)
上它将会中断。
奇怪的是,如果getData()
的输出为List<MyModelClass>
,但如果getData()
的输出仅为MyModelClass
,则Gson无法生效映射它,即使所有字段名称都已正确映射。
有更好的方法来实现吗?也许是一个常见的解串器?我试图搜索,但无法真正找到我需要的东西。
答案 0 :(得分:1)
我通过这样做解决了我的问题:
//if its a list
//Type dataType = new TypeToken<ResponseTemplate<List<MyModelClass>>>() {}.getType();
//if its a single object
Type dataType = new TypeToken<ResponseTemplate<MyModelClass>>() {}.getType();
ResponseTemplate response = new Gson().fromJson(gson.toJson(apiService.getMyObject(), dataType), dataType);
MyModelClass myModelClass = response.getData();