我有这样的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
类?
谢谢。
答案 0 :(得分:14)
您可以使用NodeList
再次投射Element
项目,然后使用getElementsByTagName();
课程中的Element
。
最好的方法是在项目中添加Cell Object
以及Direction
,Switch
,Color
等字段。然后得到这样的数据。
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 "";
}