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


Processing saveJSONArray()用法及代碼示例


Processing, saveJSONArray()用法介紹。

用法

  • saveJSONArray(json, filename)
  • saveJSONArray(json, filename, options)

參數

  • json (JSONArray) 要保存的 JSONArray
  • filename (String) 要保存到的文件的名稱
  • options (String) "compact"和"indent=N",將N替換為空格數

返回

  • boolean

說明

JSONArray 對象的內容寫入文件。默認情況下,此文件保存到草圖的文件夾中。通過從"Sketch" 菜單中選擇“顯示草圖文件夾”打開此文件夾。



或者,可以使用絕對路徑(在 Unix 和 Linux 上以 /開頭,或在 Windows 上以驅動器號開頭)將文件保存到計算機上的任何位置。



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

例子

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