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


Processing loadJSONArray()用法及代碼示例


Processing, loadJSONArray()用法介紹。

用法

  • loadJSONArray(filename)
  • loadJSONArray(file)

參數

  • filename (String) 數據文件夾中的文件名或 URL

返回

  • JSONArray

說明

從數據文件夾或 URL 加載 JSON 對象數組,並返回 JSONArray 。根據標準 JSON 語法,數組必須括在一對硬括號 [] 中,並且數組中的每個對象都必須用逗號分隔。



Processing API 加載和保存的所有文件都使用 UTF-8 編碼。

例子

// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.

/*
[
  {
    "id": 0,
    "species": "Capra hircus",
    "name": "Goat"
  },
  {
    "id": 1,
    "species": "Panthera pardus",
    "name": "Leopard"
  },
  {
    "id": 2,
    "species": "Equus zebra",
    "name": "Zebra"
  }
]
*/

JSONArray values;

void setup() {

  values = loadJSONArray("data.json");

  for (int i = 0; i < values.size(); i++) {
    
    JSONObject animal = values.getJSONObject(i); 

    int id = animal.getInt("id");
    String species = animal.getString("species");
    String name = animal.getString("name");

    println(id + ", " + species + ", " + name);
  }
}

// Sketch prints:
// 0, Capra hircus, Goat
// 1, Panthera pardus, Leopard
// 2, Equus zebra, Zebra

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 loadJSONArray()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。