Processing, saveXML()
用法介绍。
用法
saveXML(xml, filename)
参数
xml
(XML)
要保存到磁盘的 XML 对象filename
(String)
要写入的文件的名称
返回
boolean
说明
将 XML 对象的内容写入文件。默认情况下,此文件保存到草图的文件夹中。通过从"Sketch" 菜单中选择“显示草图文件夹”打开此文件夹。
或者,可以使用绝对路径(在 Unix 和 Linux 上以 /开头,或在 Windows 上以驱动器号开头)将文件保存到计算机上的任何位置。
Processing API 加载和保存的所有文件都使用 UTF-8 编码。
例子
// 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 firstChild = xml.getChild("animal");
xml.removeChild(firstChild);
saveXML(xml, "subset.xml");
}
// Sketch saves the following to a file called "subset.xml":
// <?xml version="1.0"?>
// <mammals>
// <animal id="1" species="Panthera pardus">Leopard</animal>
// <animal id="2" species="Equus zebra">Zebra</animal>
// </mammals>
有关的
相关用法
- Processing saveJSONArray()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveTable()用法及代码示例
- Processing saveBytes()用法及代码示例
- Processing saveFrame()用法及代码示例
- Processing saveJSONObject()用法及代码示例
- Processing saturation()用法及代码示例
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing super用法及代码示例
- Processing subset()用法及代码示例
- Processing strokeJoin()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing shorten()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
- Processing specular()用法及代码示例
- Processing sphere()用法及代码示例
- Processing setup()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 saveXML()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。