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


Processing loadJSONObject()用法及代码示例


Processing, loadJSONObject()用法介绍。

用法

  • loadJSONObject(filename)

参数

  • filename (String) 数据文件夹中的文件名或 URL

返回

  • JSONObject

说明

从数据文件夹或 URL 加载 JSON,并返回 JSONObject



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": "Panthera leo",
   "name": "Lion"
  }
*/

JSONObject json;

void setup() {

  json = loadJSONObject("data.json");

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

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

// Sketch prints:
// 0, Panthera leo, Lion

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 loadJSONObject()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。