1

I want to save Json object to a class with variable names same as in Json (Just like what Gson does). My problem to use Gson is, The datatype of the class variable in json changes according to datas available in server. For example, some times, it contains a list of data,and some other time, it contains "" for null. my Gson crashes while dealing with both the cases for a single code.

4

2 回答 2

1

您可以使用普通的 JSON 对象,GSON 用于预定义的数据类型,它使处理数据更容易。如果您的数据类型发生变化,最好使用 JSON 本身。

于 2013-04-24T08:36:14.620 回答
0

如果您使用过旧版本的 GSON,请尝试使用 GSON2。

于 2013-04-18T07:20:30.320 回答