当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing JSONObject.setJSONArray()用法及代码示例


Processing, 类JSONObject中的setJSONArray()用法介绍。

用法

  • .setJSONArray(key, value)

参数

  • key (String) 一个关键字符串
  • value (JSONArray) 要分配的值

返回

  • JSONObject

说明

使用关联的键设置JSONArray 的值。

例子

String[] species = { "Capra hircus", "Panthera pardus", "Equus zebra" };
String[] names = { "Goat", "Leopard", "Zebra" };

JSONObject json;

void setup() {
  
  JSONArray values = new JSONArray();

  for (int i = 0; i < species.length; i++) {

    JSONObject animal = new JSONObject();

    animal.setInt("id", i);
    animal.setString("species", species[i]);
    animal.setString("name", names[i]);

    values.setJSONObject(i, animal);
  }
  
  json = new JSONObject();
  json.setJSONArray("animals", values);

  saveJSONObject(json, "data/new.json");
}

// Sketch saves the following to a file called "new.json":
// {"animals": [
//   {
//     "id": 0,
//     "species": "Capra hircus",
//     "name": "Goat"
//   },
//   {
//     "id": 1,
//     "species": "Panthera pardus",
//     "name": "Leopard"
//   },
//   {
//     "id": 2,
//     "species": "Equus zebra",
//     "name": "Zebra"
//   }
// ]}

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 JSONObject.setJSONArray()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。