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


Processing JSONArray.getString()用法及代碼示例


Processing, 類JSONArray中的getString()用法介紹。

用法

  • .getString(index)
  • .getString(index, defaultValue)

參數

  • index (int) 必須介於 0 和 length() - 1 之間
  • index (int) 索引必須介於 0 和 length() - 1 之間。
  • defaultValue (String) 默認值。

返回

  • String

說明

獲取與指定索引關聯的String 值。

例子

// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// [ 32, 1.13, "grape", true ]

JSONArray json;

void setup() {

  json = loadJSONArray("data.json");

  int count = json.getInt(0);
  float weight = json.getFloat(1);
  String name = json.getString(2);
  boolean isFruit = json.getBoolean(3);

  println(count + ", " + weight + ", " + name + ", " + isFruit);
}

// Sketch prints:
// 32, 1.13, grape, true

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 JSONArray.getString()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。