你可以使用jOOX然后写
List<Element> elements = $(doc).find("b").children().get();
或者使用 DOM:
// Beware, this list also contains the blank text nodes around the <c/> elements,
// if your document is formatted.
NodeList list = doc.getElementsByTagName("b").item(0).getChildNodes();
更新:如果您想进一步遍历您的 DOM 文档(即获取"c"
您在评论中提到的子节点,那么我真的推荐 jOOX:
// This will find all "c" elements, and then return all children thereof
$(doc).find("c").children();
// This will return "d", "f", "d", "f", "d", "f":
List<String> tags = $(doc).find("c").children().tags();
// This will return "1", "2", "2, "2", "v", "d":
List<String> texts = $(doc).find("c").children().texts();
对 DOM 做同样的事情会变得非常冗长:
List<Element> elements = new ArrayList<Element>();
List<String> tags = new ArrayList<String>();
List<String> texts = new ArrayList<String>();
NodeList c = doc.getElementsByTagName("c");
for (int i = 0; i < c.getLength(); i++) {
if (c.item(i) instanceof Element) {
NodeList children = c.item(i).getChildNodes();
for (int j = 0; j < children.getLength(); j++) {
if (children.item(j) instanceof Element) {
elements.add((Element) children.item(j));
tags.add(((Element) children.item(j)).getTagName());
texts.add(children.item(j).getTextContent());
}
}
}
}
更新 2(请更具体地说明您未来的问题......!):使用 XPath,执行以下操作:
XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression expression = xpath.compile("//c/*");
NodeList nodes = (NodeList) expression.evaluate(
document.getDocumentElement(), XPathConstants.NODESET);