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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。