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


Processing JSONObject.getString()用法及代码示例


Processing, 类JSONObject中的getString()用法介绍。

用法

  • .getString(key)
  • .getString(key, defaultValue)

参数

  • key (String) 一个关键字符串
  • key (String) 一个关键字符串。
  • 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.
//
// {
//   "count": 32,
//   "weight": 1.13,
//   "name": "grape",
//   "isFruit": true
// }

JSONObject json;

void setup() {

  json = loadJSONObject("data.json");

  int count = json.getInt("count");
  float weight = json.getFloat("weight");
  String name = json.getString("name");
  boolean isFruit = json.getBoolean("isFruit");

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

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

相关用法


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