当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing JSONArray.getStringArray()用法及代码示例


Processing, 类JSONArray中的getStringArray()用法介绍。

用法

  • .getStringArray()

返回

  • String[]

说明

将整个 JSONArray 作为 Strings 的数组返回。 (数组中的所有值都必须是 String 类型。)

例子

// 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"

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 JSONArray.getStringArray()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。