从Android(XML)文档中的节点获取标签名称元素?

时间:2011-06-17 03:38:09

标签: android xml xml-parsing

我有这样的XML:

  <!--...-->
  <Cell X="4" Y="2" CellType="Magnet">
    <Direction>180</Direction>
    <SwitchOn>true</SwitchOn>
    <Color>-65536</Color>
  </Cell>
  <!--...-->

有很多Cell elements,我可以通过GetElementsByTagName获取单元格节点。但是,我意识到Node类没有GetElementsByTagName方法!如何在不查看Direction列表的情况下从该单元节点获取ChildNodes节点?我是否可以通过标记名称获取NodeList,例如来自Document类?

谢谢。

1 个答案:

答案 0 :(得分:14)

您可以使用NodeList再次投射Element项目,然后使用getElementsByTagName();课程中的Element。 最好的方法是在项目中添加Cell Object以及DirectionSwitchColor等字段。然后得到这样的数据。

String direction [];
NodeList cell = document.getElementsByTagName("Cell");
int length = cell.getLength();
direction = new String [length];
for (int i = 0; i < length; i++)
{
    Element element = (Element) cell.item(i);
    NodeList direction = element.getElementsByTagName("Direction");

    Element line = (Element) direction.item(0);

    direction [i] = getCharacterDataFromElement(line);

    // remaining elements e.g Switch , Color if needed
}

您的getCharacterDataFromElement()将如下所示。

public static String getCharacterDataFromElement(Element e)
{
    Node child = e.getFirstChild();
    if (child instanceof CharacterData)
    {
        CharacterData cd = (CharacterData) child;
        return cd.getData();
    }
    return "";
}