Processing, 类XML
中的toString()
用法介绍。
用法
.toString()
返回
String
说明
接受 XML
对象并将其转换为 String
,使用默认格式规则(包括 XML 声明、换行符和两个用于缩进的空格)。这些与打印XML
对象时println()
使用的格式规则相同。此方法产生与使用 format(2)
相同的结果。
例子
String data = "<mammals><animal>Goat</animal></mammals>";
void setup() {
XML xml = parseXML(data);
//Format with line breaks, XML declaration, and 2-space indentation
String s = xml.toString();
println(s);
}
// Sketch prints:
//<?xml version="1.0" encoding="UTF-8"?>
//<mammals>
// <animal>Goat</animal>
//</mammals>
有关的
相关用法
- Processing XML.addChild()用法及代码示例
- Processing XML.getString()用法及代码示例
- Processing XML.setString()用法及代码示例
- Processing XML.listChildren()用法及代码示例
- Processing XML.getInt()用法及代码示例
- Processing XML.getName()用法及代码示例
- Processing XML.setFloat()用法及代码示例
- Processing XML.removeChild()用法及代码示例
- Processing XML.setContent()用法及代码示例
- Processing XML.getChild()用法及代码示例
- Processing XML.getParent()用法及代码示例
- Processing XML.getFloat()用法及代码示例
- Processing XML.setInt()用法及代码示例
- Processing XML.getChildren()用法及代码示例
- Processing XML.format()用法及代码示例
- Processing XML.getAttributeCount()用法及代码示例
- Processing XML.listAttributes()用法及代码示例
- Processing XML.getFloatContent()用法及代码示例
- Processing XML.getContent()用法及代码示例
- Processing XML.hasChildren()用法及代码示例
- Processing XML.hasAttribute()用法及代码示例
- Processing XML.setName()用法及代码示例
- Processing XML用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 XML.toString()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。