Processing, loadXML()
用法介绍。
用法
loadXML(filename)
参数
filename
(String)
数据文件夹中的文件名或 URL。
返回
XML
说明
读取文件或 URL 的内容并使用其值创建 XML 对象。如果指定了文件,它必须位于草图的"data" 文件夹中。文件名参数也可以是在线找到的文件的 URL。
Processing API 加载和保存的所有文件都使用 UTF-8 编码。如果您需要加载非 UTF-8 格式的 XML 文件,请参阅 XML 对象的 developer's reference。
例子
// 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");
XML[] children = xml.getChildren("animal");
for (int i = 0; i < children.length; i++) {
int id = children[i].getInt("id");
String coloring = children[i].getString("species");
String name = children[i].getContent();
println(id + ", " + coloring + ", " + name);
}
}
// Sketch prints:
// 0, Capra hircus, Goat
// 1, Panthera pardus, Leopard
// 2, Equus zebra, Zebra
相关用法
- Processing loadJSONArray()用法及代码示例
- Processing loadJSONObject()用法及代码示例
- Processing loadShader()用法及代码示例
- Processing loadShape()用法及代码示例
- Processing loadTable()用法及代码示例
- Processing loadImage()用法及代码示例
- Processing loadBytes()用法及代码示例
- Processing loadStrings()用法及代码示例
- Processing loadPixels()用法及代码示例
- Processing loadFont()用法及代码示例
- Processing loop()用法及代码示例
- Processing long用法及代码示例
- Processing log()用法及代码示例
- Processing lightSpecular()用法及代码示例
- Processing lerp()用法及代码示例
- Processing lerpColor()用法及代码示例
- Processing lightFalloff()用法及代码示例
- Processing line()用法及代码示例
- Processing launch()用法及代码示例
- Processing lights()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
- Processing FFT.stop()用法及代码示例
- Processing join()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 loadXML()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。