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"

   ]

}

           

以上是 Android 将JSONArray添加到JSONObject 的全部内容, 来源链接: utcz.com/z/321290.html

回到顶部