當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。