我不知道为什么Java没有本地json解析器,这很奇怪,我现在像GSON一样在不同的jar中使用,但是我仍然相对较新。

当我尝试system.out.println查询时:

 System.out.println(this.db.fetchAll(query));


我得到这样的清单

[[1, user, pass], [2, another, test], [3, argh, test]]


如何将其作为json发送回浏览器?

最佳答案

Gson gson = new Gson();
String json = gson.toJson(this.db.fetchAll(query));

关于java - 使用GSON解析ArrayList的Arraylist,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19461424/

10-16 00:50