Processing, 类JSONObject
用法介绍。
说明
JSONObject
存储具有多个名称/值对的 JSON 数据。值可以是数字、Strings
、booleans
、其他 JSONObject
或 JSONArray
或 null。 JSONObject
和 JSONArray
对象非常相似,并且共享大部分相同的方法;主要区别在于后者存储一个 JSON 对象数组,而前者表示单个 JSON 对象。
JSON 可以从头开始、动态生成或使用现有文件中的数据生成。 JSON 也可以输出并保存到磁盘,如上例所示。
例子
JSONObject json;
void setup() {
json = new JSONObject();
json.setInt("id", 0);
json.setString("species", "Panthera leo");
json.setString("name", "Lion");
saveJSONObject(json, "data/new.json");
}
// Sketch saves the following to a file called "new.json":
// {
// "id": 0,
// "species": "Panthera leo",
// "name": "Lion"
// }
方法
- JSONObject.getString()获取与指定键关联的
String
值 - JSONObject.getInt()获取与指定键关联的
int
值 - JSONObject.getFloat()获取与键关联的
float
值 - JSONObject.getBoolean()获取与指定键关联的
boolean
值 - JSONObject.getJSONArray()检索带有关联键的
JSONArray
- JSONObject.getJSONObject()给定一个键值,检索关联的
JSONObject
- JSONObject.isNull()确定与键关联的值是否为
null
,即没有定义的值 (false
) 或者它是否有值 (true
) - JSONObject.setString()将新的键/字符串对插入
JSONObject
- JSONObject.setInt()将新的键/整数对插入
JSONObject
- JSONObject.setFloat()在
JSONObject
中放置一个键/浮点数对 - JSONObject.setBoolean()在
JSONObject
中放置一个键/布尔值对 - JSONObject.setJSONObject()使用关联的键设置
JSONObject
的值 - JSONObject.setJSONArray()使用关联的键设置
JSONArray
的值
相关用法
- Processing JSONObject.setJSONArray()用法及代码示例
- Processing JSONObject.isNull()用法及代码示例
- Processing JSONObject.setString()用法及代码示例
- Processing JSONObject.setJSONObject()用法及代码示例
- Processing JSONObject.getString()用法及代码示例
- Processing JSONObject.getJSONArray()用法及代码示例
- Processing JSONObject.getJSONObject()用法及代码示例
- Processing JSONObject.setInt()用法及代码示例
- Processing JSONObject.getFloat()用法及代码示例
- Processing JSONObject.setFloat()用法及代码示例
- Processing JSONObject.getBoolean()用法及代码示例
- Processing JSONObject.getInt()用法及代码示例
- Processing JSONObject.setBoolean()用法及代码示例
- Processing JSONArray.getIntArray()用法及代码示例
- Processing JSONArray.getFloat()用法及代码示例
- Processing JSONArray.setString()用法及代码示例
- Processing JSONArray.setFloat()用法及代码示例
- Processing JSONArray.remove()用法及代码示例
- Processing JSONArray.getString()用法及代码示例
- Processing JSONArray.setBoolean()用法及代码示例
- Processing JSONArray.getJSONArray()用法及代码示例
- Processing JSONArray.setJSONObject()用法及代码示例
- Processing JSONArray.getJSONObject()用法及代码示例
- Processing JSONArray.size()用法及代码示例
- Processing JSONArray.isNull()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 JSONObject。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。