Processing, 类JSONArray
用法介绍。
构造函数
JSONArray()
说明
JSONArray
存储 JSON 对象数组。 JSONArray
可以从头开始、动态生成或使用现有文件中的数据生成。 JSON 也可以输出并保存到磁盘,如上例所示。
例子
String[] species = { "Capra hircus", "Panthera pardus", "Equus zebra" };
String[] names = { "Goat", "Leopard", "Zebra" };
JSONArray values;
void setup() {
values = new JSONArray();
for (int i = 0; i < species.length; i++) {
JSONObject animal = new JSONObject();
animal.setInt("id", i);
animal.setString("species", species[i]);
animal.setString("name", names[i]);
values.setJSONObject(i, animal);
}
saveJSONArray(values, "data/new.json");
}
// Sketch saves the following to a file called "new.json":
// [
// {
// "id": 0,
// "species": "Capra hircus",
// "name": "Goat"
// },
// {
// "id": 1,
// "species": "Panthera pardus",
// "name": "Leopard"
// },
// {
// "id": 2,
// "species": "Equus zebra",
// "name": "Zebra"
// }
// ]
方法
- JSONArray.getString()获取与索引关联的字符串值
- JSONArray.getInt()获取与指定索引关联的int 值
- JSONArray.getFloat()获取与指定索引关联的浮点值
- JSONArray.getBoolean()获取与指定索引关联的布尔值
- JSONArray.getJSONArray()检索具有关联索引值的
JSONArray
- JSONArray.getJSONObject()检索具有关联索引值的
JSONObject
- JSONArray.getStringArray()将整个
JSONArray
作为Strings
的数组返回 - JSONArray.getIntArray()将整个
JSONArray
作为ints
的数组返回 append()
追加一个值,将数组的长度增加一- JSONArray.setString()将新值插入到指定索引位置的
JSONArray
- JSONArray.setInt()将 int 值放入 JSONArray
- JSONArray.setFloat()在 JSONArray 中放置一个浮点值
- JSONArray.setBoolean()将新值插入到指定索引位置的
JSONArray
- JSONArray.setJSONArray()使用关联的索引值设置
JSONArray
的值 - JSONArray.setJSONObject()用索引值设置
JSONObject
的值 - JSONArray.size()获取
JSONArray
中的元素总数 - JSONArray.isNull()确定与索引关联的值是否为
null
- JSONArray.remove()从指定索引位置的
JSONArray
中删除元素
相关用法
- 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 JSONArray.setInt()用法及代码示例
- Processing JSONArray.getInt()用法及代码示例
- Processing JSONArray.getBoolean()用法及代码示例
- Processing JSONArray.setJSONArray()用法及代码示例
- Processing JSONArray.getStringArray()用法及代码示例
- Processing JSONObject.setJSONArray()用法及代码示例
- Processing JSONObject用法及代码示例
- Processing JSONObject.isNull()用法及代码示例
- Processing JSONObject.setString()用法及代码示例
- Processing JSONObject.setJSONObject()用法及代码示例
- Processing JSONObject.getString()用法及代码示例
- Processing JSONObject.getJSONArray()用法及代码示例
- Processing JSONObject.getJSONObject()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 JSONArray。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。