使用Jdom / XPath和“检索元素

时间:2018-11-20 09:20:57

标签: java xpath jdom

我正在开发具有以下xml文件(document.xml)的应用程序:

<root>
    <subRoot myAttribute="CN=Ok">
        Ok
    </subRoot>
    <subRoot myAttribute="CN=&quot;Problem&quot;">
        Problem
    </subRoot>    
</root>

我需要使用XPath表达式来检索Element。我无法检索第二个元素,我需要使用myAttribute的值进行选择。这是由于&quot;字符...

这是一个测试班。第二个断言将引发AssertionError,因为该对象为null。

import static org.junit.Assert.assertNotNull;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;

import org.apache.commons.io.IOUtils;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.input.SAXBuilder;
import org.jdom.xpath.XPath;
import org.junit.Test;

public class XPathTest {

    @Test
    public void quotesXpath() throws JDOMException, IOException {
        Document document = getDocumentFromContent(getClasspathResource("document.xml"));

        String okXPath = "/root/subRoot[@myAttribute=\"CN=Ok\"]";
        assertNotNull(getElement(document, okXPath)); // Ok ...

        String problemXPath = "/root/subRoot[@myAttribute=\"CN=&quot;Problem&quot;\"]";
        assertNotNull(getElement(document, problemXPath)); // Why null ?
    }

    public String getClasspathResource(String filePath) throws IOException {
        try (InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream(filePath)) {
            return IOUtils.toString(inputStream, StandardCharsets.UTF_8);
        }
    }

    public static Document getDocumentFromContent(String content) throws IOException, JDOMException {
        try (InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8))) {
            SAXBuilder builder = new SAXBuilder();
            return builder.build(is);
        }
    }

    public Element getElement(Document document, String xpathExpression) throws JDOMException {
        XPath xpath = XPath.newInstance(xpathExpression);
        return (Element) xpath.selectSingleNode(document);
    }
}

该应用程序正在使用Jdom 1.1.3

<dependency>
   <groupId>org.jdom</groupId>
   <artifactId>jdom</artifactId>
   <version>1.1.3</version>
</dependency>

如何更改我的xpath表达式,以便返回第二个元素?这个版本的Jdom是否可以实现?

谢谢您的帮助!

1 个答案:

答案 0 :(得分:1)

尝试以下表达式:

    String problemXPath = "/root/subRoot[@myAttribute='CN=\"Problem\"']";

首先,在解析文档时,实体&quot;被替换为"字符,因此应直接在XPath表达式中使用。

第二,在XPath中,您可以对字符串常量使用单引号或双引号,如果您的字符串包含引号,则非常方便。