我在使用 Gson 序列化/反序列化此类时遇到问题:
public class Test {
@SerializedName("id")
private String mId;
public String getId() { return mId; }
public static Test fromJson(String json) { return new Gson().fromJson(json, Test.class); }
public String toJson() { return new Gson().toJson(this, Test.class); }
}
如果我运行这个:
Test test = Test.fromJson("{\"id\":\"1465988493\"}");
Log.i(TAG, "Test: " + test.toJson());
//Log.i(TAG, "Test id: " + test.getId());
它打印:
测试: {}
但是如果我运行这个:
Test test = Test.fromJson("{\"id\":\"1465988493\"}");
Log.i(TAG, "Test: " + test.toJson());
Log.i(TAG, "Test id: " + test.getId());
它按预期工作并打印:
测试:{"id":"1465988493"}
测试编号:1465988493
所以在调用 toJson 之后调用 getter 会使 toJson() 工作。怎么回事???
最后一件事,如果我将 id 初始化为 null:
public class Test {
@SerializedName("id")
private String mId = null; // <- Init to null
public String getId() { return mId; }
public static Test fromJson(String json) { return new Gson().fromJson(json, Test.class); }
public String toJson() { return new Gson().toJson(this, Test.class); }
}
然后一切都按预期工作,这段代码:
String testJson = "{\"id\":\"1465988493\"}";
Test test = Test.fromJson(testJson);
Log.i(TAG, "Test: " + test.toJson());
//Log.i(TAG, "Test id: " + test.getId());
印刷:
测试:{"id":"1465988493"}
所以,我有解决方案(将我的所有字段初始化为空),但我想了解有什么问题?