Processing, 类XML
中的format()
用法介绍。
用法
.format(indent)
参数
indent
(int)
-1 表示单行(并且没有声明),>= 0 表示缩进和换行
返回
String
说明
获取 XML
对象并将其转换为 String
,并按照 indent
参数的指定对其内容进行格式化。
如果 indent 设置为 -1,则返回的字符串没有换行符、缩进和 XML
声明。
如果 indent 设置为 0 或更大,则返回 String
并带有换行符,并将指定数量的空格作为缩进值。意思是,如果指定 0,则没有缩进,或者每个缩进将替换为相应数量的空格:1、2、3 等等。
例子
// The following short XML file called "mammals.xml" is parsed
// in the code below. It must be in the project's "data" folder.
//
// <?xml version="1.0"?>
// <mammals>
// <animal id="0" species="Capra hircus">Goat</animal>
// <animal id="1" species="Panthera pardus">Leopard</animal>
// <animal id="2" species="Equus zebra">Zebra</animal>
// </mammals>
XML xml;
void setup() {
xml = loadXML("mammals.xml");
//Format without line breaks and no indentation
String s = xml.format(-1);
println(s);
println(""); // Blank line
//Format with line breaks and no indentation
s = xml.format(0);
println(s);
//Format with line breaks and 5 spaces of indentation
s = xml.format(5);
println(s);
}
// Sketch prints:
//<mammals><animal id="0" species="Capra hircus">Goat</animal>
<animal id="1" species="Panthera pardus">Leopard</animal>
<animal id="2" species="Equus zebra">Zebra</animal></mammals>
//
//<?xml version="1.0" encoding="UTF-8"?>
//<mammals>
//<animal id="0" species="Capra hircus">Goat</animal>
//<animal id="1" species="Panthera pardus">Leopard</animal>
//<animal id="2" species="Equus zebra">Zebra</animal>
//</mammals>
//
//<?xml version="1.0" encoding="UTF-8"?>
//<mammals>
// <animal id="0" species="Capra hircus">Goat</animal>
// <animal id="1" species="Panthera pardus">Leopard</animal>
// <animal id="2" species="Equus zebra">Zebra</animal>
//</mammals>
有关的
相关用法
- Processing XML.addChild()用法及代码示例
- Processing XML.getString()用法及代码示例
- Processing XML.setString()用法及代码示例
- Processing XML.listChildren()用法及代码示例
- Processing XML.getInt()用法及代码示例
- Processing XML.toString()用法及代码示例
- 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.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.format()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。