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

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 January 21, 2019 10:05:13am EST

Creative Commons License