我有以下课程
public class MyClass {
private List<MyOtherClass> others;
}
public class MyOtherClass {
private String name;
}
我有可能看起来像这样的JSON
{
others: {
name: "val"
}
}
或这个
{
others: [
{
name: "val"
},
{
name: "val"
}
]
}
我希望能够MyClass对这两种JSON格式使用相同的格式。有办法用Gson做到这一点吗?
慕沐林林
波斯汪