我有一个这样的 JSON 文件:
[
{
"number": "3",
"title": "hello_world",
}, {
"number": "2",
"title": "hello_world",
}
]
在文件有根元素之前,我会使用:
Wrapper w = gson.fromJson(JSONSTRING, Wrapper.class);
代码,但我想不出如何编码Wrapper
类编码为根元素是一个数组。
我试过使用:
Wrapper[] wrapper = gson.fromJson(jsonLine, Wrapper[].class);
和:
public class Wrapper{
String number;
String title;
}
但是一直没有运气。我还能如何使用这种方法阅读此内容?
PS我有这个工作使用:
JsonArray entries = (JsonArray) new JsonParser().parse(jsonLine);
String title = ((JsonObject)entries.get(0)).get("title");
但我更愿意知道如何使用这两种方法来做到这一点(如果可能的话)。