从XPath java获取XML中的Child元素

时间:2018-02-07 09:29:34

标签: java xml xpath

我有一个XML如下所示:

<element type="PRICE_SPECIFIC_SIMPLE_QUERY">
    <query>
        <and>
            <match field="product" value="Bottle"/>
            <not>
                <match field="status" value="Cancel"/>
            </not>
            <not>
                <match field="material">
                    <value>GLASS</value>
                    <value>METAL</value>
                </match>
            </not>
            <greaterThan field="LastDateToPrice" value="2017-12-20"/>
            <match field="company" value="MILTON"/>
        </and>
    </query>
</element>

使用XPath = / element [@type =&#39; PRICE_SPECIFIC_SIMPLE_QUERY&#39;,我希望内部XML为String ...如下所示:

<query>
    <and>
        <match field="product" value="Bottle"/>
        <not>
            <match field="status" value="Cancel"/>
        </not>
        <not>
            <match field="material">
                <value>GLASS</value>
                <value>METAL</value>
            </match>
        </not>
        <greaterThan field="LastDateToPrice" value="2017-12-20"/>
        <match field="company" value="MILTON"/>
    </and>
</query>

但是通过在线提供的示例,我得到的是内在价值,而不是XML。我的示例代码如下所示:

    XPathFactory xpathFactory = XPathFactory.newInstance();

    XPath xpath = xpathFactory.newXPath();
    String queryType = "ICE_SPECIFIC_SIMPLE_QUERY";

    XPathExpression expr = xpath.compile("/element[@type='" + queryType + "']");
    String innerElement = (String) expr.evaluate(doc, XPathConstants.STRING);

实际输出:GLASS \ n METAL

2 个答案:

答案 0 :(得分:0)

基本上,您需要首先获取节点(完整的XML片段),然后才使用answer中的nodeToString等函数将其转换为String。

答案 1 :(得分:0)

我认为你要找的是innerHTML

这可能会有所帮助:

String source = driver.findElement(By.xpath("/element[@type='PRICE_SPECIFIC_SIMPLE_QUERY'")).getAttribute("innerHTML");