当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing XML.addChild()用法及代码示例


Processing, 类XML中的addChild()用法介绍。

用法

  • .addChild(tag)
  • .addChild(child)

返回

  • XML

说明

将新子元素附加到元素。可以使用 String 指定子级,它将用作新标签的名称,或作为对现有 XML 对象的引用。



对新创建的子对象的引用作为 XML 对象返回。

例子

// 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 newChild = xml.addChild("animal");
  newChild.setContent("bloodhound");
  println(xml);
}

// 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>
// <animal>bloodhound</animal>
// </mammals>

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 XML.addChild()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。