Android 将JSONArray添加到JSONObject

示例

// 创建一个JSONArray的新实例
JSONArray array = new JSONArray();

// 使用put()可以向数组添加一个值。
array.put("ASDF");
array.put("QWERTY");

// 创建一个JSONObject的新实例
JSONObject obj = new JSONObject();

try {
    // 将JSONArray添加到JSONObject
    obj.put("the_array", array);
} catch (JSONException e) {
    e.printStackTrace();
}

String json = obj.toString();

生成的JSON字符串如下所示:

{  
   "the_array":[  
      "ASDF",
      "QWERTY"
   ]
}