Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的函数中有以下行:
Collection<Song> songs = a.getListOfSongs();
Song 类中有所有必需的注释。需要使用 GSON 库返回 JSON 字符串。
谢谢!
使用new Gson().toJson(songs). 虽然当您尝试从这个 json 制作 Song bean 时,您可能不得不面对一些转换问题,例如,int 值会转换为 double,char 会转换为 string...因为 GSON 使用它的智能来解析这些类型
new Gson().toJson(songs)
Gson gson = new Gson(); String json = gson.toJson(songs);