我试图用null值反序列化我自己的类。但我的代码不起作用。
我的json:
{"Text":null,"Code":0,"Title":"This is Sparta!"}
在我的方法中,我执行以下操作:
this.setText(gson.fromJson(jsonObject.getString("Text"), String.class));
this.setTitle(gson.fromJson(jsonObject.getString("Title"), String.class));
this.setCode(gson.fromJson(jsonObject.getString("Faccode"), Integer.class))
我没有反序列化整个对象,因为也可以有List<T>
。
错误:
myapp W/System.err? com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 6 path $
myapp W/System.err? at com.google.gson.Gson.assertFullConsumption(Gson.java:786)
myapp W/System.err? at com.google.gson.Gson.fromJson(Gson.java:776)
myapp W/System.err? at com.google.gson.Gson.fromJson(Gson.java:724)
myapp W/System.err? at com.google.gson.Gson.fromJson(Gson.java:696)
答案 0 :(得分:22)
首先,您必须阅读有关如何使用gson进行解析的信息。您可以找到一些示例here。
现在你知道如何解析,你仍然可以解决空值问题。要解决这个问题,你必须告诉gson使用
序列化null
Gson gson = new GsonBuilder().serializeNulls().create();
来自serializeNulls()
doc
配置Gson以序列化空字段。默认情况下,Gson省略序列化期间为空的所有字段。
编辑(未经过测试,基于doc)
为了获得一些独特的价值,你可以做到
String json = ""; //Your json has a String
JsonObject jsonObject = new JsonParser().parse(json).getAsJsonObject();
//If null, use a default value
JsonElement nullableText = jsonObject.get("Text");
String text = (nullableText instanceof JsonNull) ? "" : nullableText.getAsString();
String title = jsonObject.get("Title").toString();
int code = jsonObject.get("Code").getAsInt();
否则,如果你有这个pojo
public class MyElement {
@SerializedName("Text")
private String text;
@SerializedName("Title")
private String title;
@SerializedName("Code")
private int code;
}
你可以使用
进行解析String json = ""; //Your json has a String
Gson gson = new GsonBuilder().serializeNulls().create();
MyElement myElement = gson.fromJson(json, MyElement.class);
答案 1 :(得分:0)
我遇到了类似的问题(null
值引发的异常),并带有以下POJO:
public class MyElement {
private String something;
private String somethingElse;
private JsonObject subEntry; // this doesn't allow deserialization of `null`!
}
和这段代码:
parsedJson = gson.fromJson(json, MyElement.class)
后端返回的subEntry
为null
。
我通过将subEntry
的类型从JsonObject
更改为JsonElement
(JsonObject
和JsonNull
的父类来修复它,以允许反序列化null
值。
public class MyElement {
private String something;
private String somethingElse;
private JsonElement subEntry; // this allows deserialization of `null`
}
要在运行时稍后检查null,您需要执行以下操作:
if (parsedJson.subEntry instanceof JsonNull) {
...
} else {
...
}