我的dog
课程如下:
class Dog {
int id;
String name;
}
我将其List
个对象转换为JSON:
List<Dog> myDogs = (Some initialization);
Gson gson = new Gson();
String jsonString=gson.toJson(myDogs);
JSON字符串给我这个结果:
[[{"id":1,"name":"Bull Dog"}],[{"id":2,"name":"German Shepherd"}]]
我希望此字符串在开头包含类名Dog
,以便我可以将其重新分析为客户端List
个Dog
个对象。
我试过了:
gson.toJsonTree(myDogs,Dog.class)
但没有运气。