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


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。