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 loadJSONArray()用法及代码示例
- Processing loadXML()用法及代码示例
- Processing loadShader()用法及代码示例
- Processing loadShape()用法及代码示例
- Processing loadTable()用法及代码示例
- Processing loadImage()用法及代码示例
- Processing loadBytes()用法及代码示例
- Processing loadStrings()用法及代码示例
- Processing loadPixels()用法及代码示例
- Processing loadFont()用法及代码示例
- Processing loop()用法及代码示例
- Processing long用法及代码示例
- Processing log()用法及代码示例
- Processing lightSpecular()用法及代码示例
- Processing lerp()用法及代码示例
- Processing lerpColor()用法及代码示例
- Processing lightFalloff()用法及代码示例
- Processing line()用法及代码示例
- Processing launch()用法及代码示例
- Processing lights()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
- Processing FFT.stop()用法及代码示例
- Processing join()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 loadJSONObject()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。