This reference is for Processing 2.0+. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Javadoc.
| Class | |||||
|---|---|---|---|---|---|
| Name | setJSONObject() |
||||
| Examples |
JSONObject json;
void setup() {
json = new JSONObject();
JSONObject lion = new JSONObject();
lion.setInt("id", 0);
lion.setString("species", "Panthera leo");
json.setJSONObject("lion", lion);
println(json);
}
// Sketch prints:
// {"lion": {
// "id": 0,
// "species": "Panthera leo"
// }}
| ||||
| Description | Sets the value of the JSONObject with the associated key. | ||||
| Syntax | .setJSONObject(key, value) | ||||
| Parameters |
| ||||
| Returns | JSONObject | ||||
| Related | setJSONArray() getJSONObject() getJSONArray() |
