简体   繁体   English

JAVA:从XML文档中提取元素

[英]JAVA : Extract element from XML Document

I'm using javax.xml.parsers to navigate through an XML document like the one below: 我正在使用javax.xml.parsers来浏览XML文档,如下所示:

` `

<ContextElement>
    <DimensionNode>Role</DimensionNode>
    <Value>Administration</Value>
    <TailoringExpressions>
        <TailoringExpression>
            <Relation>Student</Relation>
            <ProjAtt>
                <Attribute>Matr</Attribute>
                <Attribute>SName</Attribute>
                <Attribute>SSurname</Attribute>
                <Attribute>SDateOfBirth</Attribute>
                <Attribute>SEmail</Attribute>
                <Attribute>SAddress</Attribute>
            </ProjAtt>
            <Condition/>
            <SemiJoinRel/>
            <SemiJoinOn/>
            <SemiJoinCond/>
        </TailoringExpression>
    </TailoringExpressions>
</ContextElement>
<ContextElement>
    <DimensionNode>Deadline</DimensionNode>
    <Value>Lost</Value>
    <TailoringExpressions>
        <TailoringExpression>
            <Relation>Deadline</Relation>
            <ProjAtt>
                <Attribute>IdDeadline</Attribute>
                <Attribute>Student</Attribute>                  
                <Attribute>DeadlineDate</Attribute>
                <Attribute>Description</Attribute>
                <Attribute>IsMet</Attribute>
            </ProjAtt>
            <Condition>DeadlineDate LT CurrentDate AND IsMet=False</Condition>
            <SemiJoinRel/>
            <SemiJoinOn/>
            <SemiJoinCond/>
        </TailoringExpression>
    </TailoringExpressions>
</ContextElement>

` `

I've a problem because I need to extract the object/node ContextElement which has as DimensionNode the value "Role" and as Value the value "Administration" and I'm not able to write a working code! 我有一个问题,因为我需要提取对象/节点ContextElement,它的DimensionNode值为“ Role”,而Value值为“ Administration”,因此我无法编写有效的代码! Can someone tell me how to do that? 有人可以告诉我该怎么做吗? Thanks 谢谢

I think the best way to extract values is to use xpath: 我认为提取值的最佳方法是使用xpath:

XPath xpath = XPathFactory.newInstance().newXPath();
String expression = "/widgets/widget";
InputSource inputSource = new InputSource("widgets.xml");
NodeSet nodes = (NodeSet) xpath.evaluate(expression, inputSource, XPathConstants.NODESET);

For more information look at oracle documentation . 有关更多信息,请参见oracle文档

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM