如何解析android中的JSON数组?[描述中的JSON结构]

时间:2016-06-06 06:03:08

标签: android json android-volley

我有一个Json数组 -

[
  500,
  "Applied Before"
]

我如何在android中解析它。

2 个答案:

答案 0 :(得分:1)

您可以尝试这样

 String data = " [500," +
            "  \"Applied Before\"] ";
    try {
        JSONArray arr = new JSONArray(data);
        Log.i("arr",""+arr.get(0));
    } catch (JSONException e) {
        e.printStackTrace();
    }

答案 1 :(得分:0)

不正确的JSON数组语法。

JSON数组的示例:

Gulpfile.js