Processing, 类JSONObject
中的setString()
用法介绍。
用法
.setString(key, value)
参数
key
(String)
一个关键字符串value
(String)
要分配的值
返回
JSONObject
说明
将新的键/字符串对插入JSONObject
,或者,如果具有指定键的值已经存在,则分配一个新值。
例子
JSONObject json;
void setup() {
json = new JSONObject();
json.setInt("count", 88);
json.setFloat("weight", 35.432);
json.setString("name", "celery");
json.setBoolean("isFruit", false);
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:
// 88, 35.432, celery, false
相关用法
- Processing JSONObject.setJSONArray()用法及代码示例
- Processing JSONObject.setJSONObject()用法及代码示例
- Processing JSONObject.setInt()用法及代码示例
- Processing JSONObject.setFloat()用法及代码示例
- Processing JSONObject.setBoolean()用法及代码示例
- Processing JSONObject.isNull()用法及代码示例
- Processing JSONObject.getString()用法及代码示例
- Processing JSONObject.getJSONArray()用法及代码示例
- Processing JSONObject.getJSONObject()用法及代码示例
- Processing JSONObject.getFloat()用法及代码示例
- Processing JSONObject.getBoolean()用法及代码示例
- Processing JSONObject.getInt()用法及代码示例
- Processing JSONObject用法及代码示例
- Processing JSONArray.getIntArray()用法及代码示例
- Processing JSONArray.getFloat()用法及代码示例
- Processing JSONArray.setString()用法及代码示例
- Processing JSONArray.setFloat()用法及代码示例
- Processing JSONArray.remove()用法及代码示例
- Processing JSONArray.getString()用法及代码示例
- Processing JSONArray.setBoolean()用法及代码示例
- Processing JSONArray.getJSONArray()用法及代码示例
- Processing JSONArray.setJSONObject()用法及代码示例
- Processing JSONArray.getJSONObject()用法及代码示例
- Processing JSONArray.size()用法及代码示例
- Processing JSONArray.isNull()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 JSONObject.setString()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。