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


Processing JSONArray用法及代码示例


Processing, 类JSONArray用法介绍。

构造函数

  • JSONArray()

说明

JSONArray 存储 JSON 对象数组。 JSONArray 可以从头开始、动态生成或使用现有文件中的数据生成。 JSON 也可以输出并保存到磁盘,如上例所示。

例子

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

JSONArray values;

void setup() {

  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);
  }

  saveJSONArray(values, "data/new.json");
}

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

方法

相关用法


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