Processing, 類JSONObject
中的setJSONArray()
用法介紹。
用法
.setJSONArray(key, value)
參數
key
(String)
一個關鍵字符串value
(JSONArray)
要分配的值
返回
JSONObject
說明
使用關聯的鍵設置JSONArray
的值。
例子
String[] species = { "Capra hircus", "Panthera pardus", "Equus zebra" };
String[] names = { "Goat", "Leopard", "Zebra" };
JSONObject json;
void setup() {
JSONArray 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);
}
json = new JSONObject();
json.setJSONArray("animals", values);
saveJSONObject(json, "data/new.json");
}
// Sketch saves the following to a file called "new.json":
// {"animals": [
// {
// "id": 0,
// "species": "Capra hircus",
// "name": "Goat"
// },
// {
// "id": 1,
// "species": "Panthera pardus",
// "name": "Leopard"
// },
// {
// "id": 2,
// "species": "Equus zebra",
// "name": "Zebra"
// }
// ]}
相關用法
- Processing JSONObject.setJSONObject()用法及代碼示例
- Processing JSONObject.setString()用法及代碼示例
- Processing JSONObject.setInt()用法及代碼示例
- Processing JSONObject.setFloat()用法及代碼示例
- Processing JSONObject.setBoolean()用法及代碼示例
- Processing JSONObject.isNull()用法及代碼示例
- Processing JSONObject.getString()用法及代碼示例
- Processing JSONObject.getJSONArray()用法及代碼示例
- Processing JSONObject.getJSONObject()用法及代碼示例
- Processing JSONObject.getFloat()用法及代碼示例
- Processing JSONObject.getBoolean()用法及代碼示例
- Processing JSONObject.getInt()用法及代碼示例
- Processing JSONObject用法及代碼示例
- 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.setJSONArray()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。