Szukaj…


Uwagi

Wyrażenia XPath są używane do nawigowania i wybierania jednego lub więcej węzłów w dokumencie drzewa XML, takich jak wybór określonego elementu lub węzła atrybutu.

Zobacz to zalecenie W3C, aby uzyskać odniesienia do tego języka.

Ocena NodeList w dokumencie XML

Biorąc pod uwagę następujący dokument XML:

<documentation>
    <tags>
        <tag name="Java">
            <topic name="Regular expressions">
                <example>Matching groups</example>
                <example>Escaping metacharacters</example>
            </topic>
            <topic name="Arrays">
                <example>Looping over arrays</example>
                <example>Converting an array to a list</example>
            </topic>
        </tag>
        <tag name="Android">
            <topic name="Building Android projects">
                <example>Building an Android application using Gradle</example>
                <example>Building an Android application using Maven</example>
            </topic>
            <topic name="Layout resources">
                <example>Including layout resources</example>
                <example>Supporting multiple device screens</example>
            </topic>
        </tag>
    </tags>
</documentation>

Poniżej pobierane są wszystkie example węzły dla znacznika Java (użyj tej metody, jeśli oceniasz XPath tylko raz w XML. Zobacz inny przykład, gdy wiele wywołań XPath jest ocenianych w tym samym pliku XML.):

XPathFactory xPathFactory = XPathFactory.newInstance();
XPath xPath = xPathFactory.newXPath(); //Make new XPath
InputSource inputSource = new InputSource("path/to/xml.xml"); //Specify XML file path

NodeList javaExampleNodes = (NodeList) xPath.evaluate("/documentation/tags/tag[@name='Java']//example", inputSource, XPathConstants.NODESET); //Evaluate the XPath
...

Analiza wielu wyrażeń XPath w jednym pliku XML

Korzystając z tego samego przykładu, co ocena NodeList w dokumencie XML , oto sposób efektywnego wykonywania wielu wywołań XPath:

Biorąc pod uwagę następujący dokument XML:

<documentation>
    <tags>
        <tag name="Java">
            <topic name="Regular expressions">
                <example>Matching groups</example>
                <example>Escaping metacharacters</example>
            </topic>
            <topic name="Arrays">
                <example>Looping over arrays</example>
                <example>Converting an array to a list</example>
            </topic>
        </tag>
        <tag name="Android">
            <topic name="Building Android projects">
                <example>Building an Android application using Gradle</example>
                <example>Building an Android application using Maven</example>
            </topic>
            <topic name="Layout resources">
                <example>Including layout resources</example>
                <example>Supporting multiple device screens</example>
            </topic>
        </tag>
    </tags>
</documentation>

Oto jak użyłbyś XPath do oceny wielu wyrażeń w jednym dokumencie:

XPath xPath = XPathFactory.newInstance().newXPath(); //Make new XPath
DocumentBuilder builder = DocumentBuilderFactory.newInstance();
Document doc = builder.parse(new File("path/to/xml.xml")); //Specify XML file path

NodeList javaExampleNodes = (NodeList) xPath.evaluate("/documentation/tags/tag[@name='Java']//example", doc, XPathConstants.NODESET); //Evaluate the XPath
xPath.reset(); //Resets the xPath so it can be used again
NodeList androidExampleNodes = (NodeList) xPath.evaluate("/documentation/tags/tag[@name='Android']//example", doc, XPathConstants.NODESET); //Evaluate the XPath

...

Wielokrotne analizowanie pojedynczego wyrażenia XPath w pliku XML

W takim przypadku wyrażenie musi zostać skompilowane przed ocenami, aby każde wywołanie evaluate nie compile tego samego wyrażenia. Prosta składnia to:

XPath xPath = XPathFactory.newInstance().newXPath(); //Make new XPath
XPathExpression exp = xPath.compile("/documentation/tags/tag[@name='Java']//example");
DocumentBuilder builder = DocumentBuilderFactory.newInstance();
Document doc = builder.parse(new File("path/to/xml.xml")); //Specify XML file path

NodeList javaExampleNodes = (NodeList) exp.evaluate(doc, XPathConstants.NODESET); //Evaluate the XPath from the already-compiled expression

NodeList javaExampleNodes2 = (NodeList) exp.evaluate(doc, XPathConstants.NODESET); //Do it again

Ogólnie rzecz biorąc, dwa wywołania XPathExpression.evaluate() będą znacznie wydajniejsze niż dwa wywołania XPath.evaluate() .



Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow