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

JSONArray

Name

getStringArray()

Examples
// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// [ "sasquatch", "yeti", "jackalope", "unicorn", "centaur" ]

JSONArray json;

void setup() {

  json = loadJSONArray("data.json");

  String[] values = json.getStringArray();

  println(values);
}

// Sketch prints:
// [0] "sasquatch"
// [1] "yeti"
// [2] "jackalope"
// [3] "unicorn"
// [4] "centaur"
Description Returns the entire JSONArray as an array of Strings. (All values in the array must be of the String type.)
Syntax
.getStringArray()
ReturnsString[]
RelatedgetIntArray()
Updated on May 19, 2014 05:30:03pm PDT

Creative Commons License