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


Processing JSONObject.getJSONObject()用法及代碼示例


Processing, 類JSONObject中的getJSONObject()用法介紹。

用法

  • .getJSONObject(key)

參數

  • key (String) 一個關鍵字符串

返回

  • JSONObject

說明

給定一個鍵值,檢索關聯的 JSONObject

例子

// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// {
//   "goat": {
//     "id": 0,
//     "species": "Capra hircus"
//   },
//   "leopard": {
//     "id": 1,
//     "species": "Panthera pardus"
//   },
//   "zebra": {
//     "id": 2,
//     "species": "Equus zebra"
//   }
// }

JSONObject json;

void setup() {

  json = loadJSONObject("data.json");

  JSONObject goat = json.getJSONObject("goat");

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

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

// Sketch prints:
// 0, Capra hircus

相關用法


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