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


Processing XML.listChildren()用法及代碼示例


Processing, 類XML中的listChildren()用法介紹。

用法

  • .listChildren()

返回

  • String[]

說明

獲取元素所有子元素的名稱,並將名稱作為 Strings 的數組返回。這與在每個子元素上單獨循環和調用 getName() 相同。

例子

// 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");
  println(xml.listChildren());
}

// Sketch prints:
// [0] "#text"
// [1] "animal"
// [2] "#text"
// [3] "animal"
// [4] "#text"
// [5] "animal"
// [6] "#text"

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 XML.listChildren()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。