0

Java で XPath を使用して XML データを読み取りたい。

という名前の次の XML ファイルがありますMyXML.xml

<?xml version="1.0" encoding="iso-8859-1" ?>
<REPOSITORY xmlns:LIBRARY="http://www.openarchives.org/LIBRARY/2.0/"
            xmlns:xsi="http://www.w3.prg/2001/XMLSchema-instance"
            xsi:schemaLocation="http://www.openarchives.org/LIBRARY/2.0/ http://www.openarchives.org/LIBRARY/2.0/LIBRARY-PHM.xsd">
    <repository>Test</repository>
    <records>
        <record>
            <ejemplar>
                <library_book:book
                        xmlns:library_book="http://www.w3c.es/LIBRARY/book/"
                        xmlns:book="http://www.w3c.es/LIBRARY/book/"
                        xmlns:bookAssets="http://www.w3c.es/LIBRARY/book/"
                        xmlns:bookAsset="http://www.w3c.es/LIBRARY/book/"
                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        xsi:schemaLocation="http://www.w3c.es/LIBRARY/book/ http://www.w3c.es/LIBRARY/replacement/book.xsd">
                    <book:bookAssets count="1">
                        <book:bookAsset nasset="1">
                            <book:bookAsset.id>value1</book:bookAsset.id>
                            <book:bookAsset.event>
                                <book:bookAsset.event.id>value2</book:bookAsset.event.id>
                            </book:bookAsset.event>
                        </book:bookAsset>
                    </book:bookAssets>
                </library_book:book>
            </ejemplar>
        </record>
    </records>
</REPOSITORY>

値へvalue1のアクセスが必要value2です。このために、私はこれを試します:

// Standard of reading a XML file
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
DocumentBuilder builder;
Document doc = null;
XPathExpression expr = null;
builder = factory.newDocumentBuilder();
doc = builder.parse("MyXML.xml");

// Create a XPathFactory
XPathFactory xFactory = XPathFactory.newInstance();

// Create a XPath object
XPath xpath = xFactory.newXPath();

expr = xpath.compile("//REPOSITORY/records/record/ejemplar/library_book:book//book:bookAsset.event.id/text()");

Object result = expr.evaluate(doc, XPathConstants.STRING);

System.out.println("RESULT=" + (String)result);

しかし、私は何の結果も得られません。印刷のみRESULT=

value1¿およびvalue2値へのアクセス方法?. ¿適用する XPath フィルターは何ですか?.

ありがとうございます。

私はJDK6を使用しています。

4

3 に答える 3

1

名前空間に問題があります。できることは

  1. それらを考慮に入れる
  2. XPathlocal-name()関数を使用してそれらを無視する

解決策 1 は、NamespaceContext名前空間の名前と URI をマップし、XPathクエリを実行する前にそれをオブジェクトに設定する を実装することを意味します。

解決策 2 は簡単です。XPath を変更するだけです (ただし、XML によっては、正しい要素を確実に選択するように XPath を微調整することができます)。

XPath xpath = xFactory.newXPath();
expr = xpath.compile("//*[local-name()='bookAsset.event.id']/text()");
Object result = expr.evaluate(doc, XPathConstants.STRING);
System.out.println("RESULT=" + result);

ideone で実行可能な例

次のブログ記事を参照して、Java での名前空間と XPath の使用法をよりよく理解してください (古い場合でも) 。

于 2012-11-13T08:10:21.957 に答える
0

試す

Object result = expr.evaluate(doc, XPathConstants.NODESET);

    // Cast the result to a DOM NodeList
    NodeList nodes = (NodeList) result;
    for (int i=0; i<nodes.getLength();i++){
      System.out.println(nodes.item(i).getNodeValue());
    }
于 2012-11-13T08:06:47.760 に答える
0

One approach is to implement a name space context like:

public static class UniversalNamespaceResolver implements NamespaceContext {
    private Document sourceDocument;


    public UniversalNamespaceResolver(Document document) {
        sourceDocument = document;
    }


    public String getNamespaceURI(String prefix) {
        if (prefix.equals(XMLConstants.DEFAULT_NS_PREFIX)) {
            return sourceDocument.lookupNamespaceURI(null);
        } else {
            return sourceDocument.lookupNamespaceURI(prefix);
        }
    }


    public String getPrefix(String namespaceURI) {
        return sourceDocument.lookupPrefix(namespaceURI);
    }

    public Iterator getPrefixes(String namespaceURI) {
        return null;
    }

}

And then use it like

        xpath.setNamespaceContext(new UniversalNamespaceResolver(doc));

You also need to move up all the namespace declarations to the root node (REPOSITORY). Otherwise it might be a problem if you have namespace declarations on two different levels.

于 2012-11-13T08:59:29.607 に答える