作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想提取 <Page>
内的所有节点节点。我使用下面的方法通过以下两种方法查找 XML 文档中的所有节点
doc.getElementsByTagName("*"); //getting all the nodes
doc.getElementsByTagName("name"); //getting nodes <name>
但我想找到特定节点内的所有节点。例如我想要 <page>
内的所有节点。请建议我一种方法......
<Pages>
<Page>
<Diagram>
<Widgets>
<Image>
<Name>YmcLogo</Name>
<Rectangle>
<Rectangle X="0" Y="4" Width="130" Height="28" />
</Rectangle>
<Bold>False</Bold>
<BorderColor>Color(argb) = (255, 0, 0, 0)</BorderColor>
<BorderWidth>-1</BorderWidth>
<FillColor>Color(argb) = (255, 255, 255, 255)</FillColor>
<FontName>Arial</FontName>
<FontSize>9.75</FontSize>
<ForeColor>Color(argb) = (255, 0, 0, 0)</ForeColor>
<HorizontalAlignment>Center</HorizontalAlignment>
<Italic>False</Italic>
<Underline>False</Underline>
<VerticalAlignment>Center</VerticalAlignment>
<Widgets>
<TextPanel>
<Html><p style="font-size:13px;text-align:center;line-height:normal;"><span style="font-family:'Arial Regular', 'Arial';font-weight:400;font-style:normal;font-size:13px;color:#000000;text-align:center;line-height:normal;">&nbsp;</span></p></Html>
<Name />
<Rectangle>
<Rectangle X="2" Y="6" Width="126" Height="16" />
</Rectangle>
<Bold>False</Bold>
<BorderColor>Color(argb) = (255, 0, 0, 0)</BorderColor>
<BorderWidth>-1</BorderWidth>
<FillColor>Color(argb) = (255, 255, 255, 255)</FillColor>
<FontName>Arial</FontName>
<FontSize>9.75</FontSize>
<ForeColor>Color(argb) = (255, 0, 0, 0)</ForeColor>
<HorizontalAlignment>Center</HorizontalAlignment>
<Italic>False</Italic>
<Underline>False</Underline>
<VerticalAlignment>Center</VerticalAlignment>
</TextPanel>
</Widgets>
</Image>
<ShapeType>H2</ShapeType>
<Annotation>
<Properties>
<PropertyValue PropertyName="ContainerType">conditionContainer</PropertyValue>
</Properties>
</Annotation>
<FootnoteNumber>1</FootnoteNumber>
<Name>SCMProductGroup</Name>
<Rectangle>
<Rectangle X="72" Y="110" Width="127" Height="15" />
</Rectangle>
<Underline>False</Underline>
<VerticalAlignment>Near</VerticalAlignment>
</Shape>
<Textbox>
<Text />
<Annotation>
<Properties>
<PropertyValue PropertyName="ContainerType">conditionContainer</PropertyValue>
<PropertyValue PropertyName="field_label[多言語対応用キー][多语言对应Key]">label.scmProductGroup</PropertyValue>
<PropertyValue PropertyName="type">text</PropertyValue>
<PropertyValue PropertyName="cvcodeobjary ">scmProductGrp</PropertyValue>
<PropertyValue PropertyName="cvcontainerobjary ">scmProductGrpNm</PropertyValue>
<PropertyValue PropertyName="cvfieldstrary ">scmProductGrpName</PropertyValue>
<PropertyValue PropertyName="cvopenmethod ">scmProductGrp_ajax_codeValue</PropertyValue>
<PropertyValue PropertyName="maxlength[桁数-最大][最大位数]">3</PropertyValue>
<PropertyValue PropertyName="size">3</PropertyValue>
</Properties>
</Annotation>
</Textbox>
<Textbox>
<Text />
<Annotation>
<Properties>
<PropertyValue PropertyName="ContainerType">conditionContainer</PropertyValue>
<PropertyValue PropertyName="type">text</PropertyValue>
<PropertyValue PropertyName="datatype">String</PropertyValue>
<PropertyValue PropertyName="styleClass">display</PropertyValue>
<PropertyValue PropertyName="full-width">False</PropertyValue>
<PropertyValue PropertyName="half-width-al">True</PropertyValue>
<PropertyValue PropertyName="half-width-num">False</PropertyValue>
<PropertyValue PropertyName="half-width-other">False</PropertyValue>
</Properties>
</Annotation>
</Textbox>
<Table>
<Annotation>
<Properties>
<PropertyValue PropertyName="ContainerType">DhtmlX Grid Container</PropertyValue>
<PropertyValue PropertyName="maxlength[桁数-最大][最大位数]">3</PropertyValue>
<PropertyValue PropertyName="size">3</PropertyValue>
<PropertyValue PropertyName="group-name">1</PropertyValue>
<PropertyValue PropertyName="group-type">list</PropertyValue>
<PropertyValue PropertyName="collection">result</PropertyValue>
<PropertyValue PropertyName="edit[入出力区分][输入区分]">true</PropertyValue>
<PropertyValue PropertyName="sort">True</PropertyValue>
</Properties>
</Annotation>
<FootnoteNumber>5</FootnoteNumber>
<Name>DHTMLXgrid</Name>
<Rectangle>
<Rectangle X="20" Y="180" Width="812" Height="140" />
</Rectangle>
</Table>
</Widgets>
</Diagram>
<PackageInfo>
<Name>01::inquiry::list</Name>
</PackageInfo>
</Page>
</Pages>
最佳答案
获取名称为 <page>
的所有节点
NodeList list = doc.getElementsByTagName("page");
如果有很多,则迭代它们并为每个获取子元素
for (Node node : list)
{
//Get all nodes inside the this <page> element
NodeList childList = node.getChildNodes();
}
如果您确实想要每个 <page>
中包含的所有节点,您将需要一个递归函数。这个将填充一个作为参数获取的列表:
public void getAllChildren(ArrayList<Node> list, Node parentNode)
{
NodeList childList = parentNode.getChildNodes()
for(Node node : childList)
{
list.add(node);
getAllChildren(list, node);
}
}
使用此功能
ArrayList<Node> allNodes = new ArrayList<Node>();
//Get the first node of all elements of <page>
Node pageNode = doc.getElementsByTagName("page").item(0);
getAllChildren(allNodes, pageNode);
//Now every child and child of child etc is on allNodes
关于java - 如何在 XML 中查找特定标签内的所有标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31674594/
我是一名优秀的程序员,十分优秀!