當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。