-1

我的函数中有以下行:

Collection<Song> songs = a.getListOfSongs();

Song 类中有所有必需的注释。需要使用 GSON 库返回 JSON 字符串。

谢谢!

4

2 回答 2

1

使用new Gson().toJson(songs). 虽然当您尝试从这个 json 制作 Song bean 时,您可能不得不面对一些转换问题,例如,int 值会转换为 double,char 会转换为 string...因为 GSON 使用它的智能来解析这些类型

于 2013-09-23T12:13:30.163 回答
1
Gson gson = new Gson();
String json = gson.toJson(songs);
于 2013-09-23T12:15:10.377 回答