我应该将此json数据文件视为对象还是数组

时间:2018-08-25 14:20:42

标签: android json android-volley

我有以下发布的json内容。我想用凌空抽出数据。 我的问题是,我应该将其视为JSONObject还是JSONArray?我问这个问题是因为如下所示,它在下面的json数据中以[开头 并以]

结尾

代码

this.mJSONObjectRequest = new JsonObjectRequest(Request.Method.GET, this.BASE_URL, null, new Response.Listener<JSONObject>() {

json

[
{
    "trends": [
    {
        "name": "#ChainedToTheRhythm",
        "url": "http://twitter.com/search?q=%23ChainedToTheRhythm",
        "promoted_content": null,
        "query": "%23ChainedToTheRhythm",
        "tweet_volume": 48857
    },
    {
    },

    {
    },
    ..
    ..
    ]
}
]

0 个答案:

没有答案