Gson:序列化瞬态场?

时间:2012-06-06 17:25:41

标签: java gson

无论如何序列化一个类的瞬态字段?默认情况下不支持文档,但可能有办法打开它?

非常感谢

1 个答案:

答案 0 :(得分:5)

我不是Gson专家,但我认为你可以添加注释

@com.google.gson.annotations.Expose

javadocs here - note that you have to do a few other things too

或者,您可以致电

GsonBuilder.excludeFieldsWithModifiers(int... modifiers)

并忽略瞬态标志。在this doc

中搜索“Java Modifier Excleusion”(或瞬态)

然而,正如戴夫和路易斯评论的那样,序列化瞬态场是不寻常的。