This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
| Class | |||||||
|---|---|---|---|---|---|---|---|
| Name | getString() | ||||||
| Examples | 
// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// {
//   "count": 32,
//   "weight": 1.13,
//   "name": "grape",
//   "isFruit": true
// }
JSONObject json;
void setup() {
  json = loadJSONObject("data.json");
  int count = json.getInt("count");
  float weight = json.getFloat("weight");
  String name = json.getString("name");
  boolean isFruit = json.getBoolean("isFruit");
  println(count + ", " + weight + ", " + name + ", " + isFruit);
}
// Sketch prints:
// 32, 1.13, grape, true
 | ||||||
| Description | Gets the String value associated with the specified key. | ||||||
| Syntax | .getString(key) .getString(key, defaultValue) | ||||||
| Parameters | 
 | ||||||
| Returns | String | ||||||
| Related | getInt() getFloat() getBoolean() | 
