當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。