1

というXmlResourceParserインスタンスがありますxmlgetText()私のコードに見られるように、ノードを呼び出そうとすると、null が返されます。適切な値を返す同じノードで呼び出すことができるため、これは奇妙ですgetName()。したがって、インスタンスは適切に設定されます。これが私のコードです:

    XmlResourceParser xml = context.getResources().getXml(R.xml.thesaurus);

    try {
        //if (xml.getName().equals("word")) {
            xml.next(); //to the first node within <word></word>
            boolean notFound = true;
            while (notFound) {
                xml.next();
                if (xml.getName() != null && xml.getName().equalsIgnoreCase("synonyms")) {
                    String synonym = xml.getText();
                    Log.v(TAG, String.valueOf(synonym));
                    notFound = false; //found
                }
            }
        }
    } catch (XmlPullParserException xppe) {
        xppe.printStackTrace();
    } catch (IOException ioe) {
        ioe.printStackTrace();
    }

これは私の XML ですが、何も問題はありません。

<?xml version="1.0"?>
<thesaurus>
    <word name="let">
        <synonyms>allow</synonyms>
    </word>
</thesaurus>

どんな助けでも大歓迎です!ありがとう!

4

3 に答える 3

0

xml.getText() を呼び出すと、xml パーサーは現在、コンテンツではなく START_TAG を指しています。xml.next() を呼び出すと、getText() がコンテンツを返すことができます。

if (xml.getName() != null && xml.getName().equalsIgnoreCase("synonyms")) {
   xml.next();
   String synonym = xml.getText();
   Log.v(TAG, String.valueOf(synonym));
   notFound = false; //found
}

たとえば、次のようにしてイテレータの位置を確認できます。

if (xml.getEventType() == XmlPullParser.TEXT) {
   // iterator is at content
}
于 2015-09-26T22:01:11.660 に答える
-1

これを試して

final String xml ="<?xml version=\"1.0\"?><thesaurus><word name=\"let\"><synonyms>allow</synonyms></word></thesaurus>";

    final DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = null;
    try {
        builder = builderFactory.newDocumentBuilder();
        final Document xmlDocument = builder.parse(new ByteArrayInputStream(xml.getBytes()));
        final XPath xPath = XPathFactory.newInstance().newXPath();
        final Object result = xPath.compile("/thesaurus/word/synonyms").evaluate(xmlDocument, XPathConstants.NODESET);
        NodeList nodes = (NodeList) result;

        for (int h = 0; h < nodes.getLength(); h++) {
            final Node node = nodes.item(h);
            final NodeList venueChildNodes = node.getChildNodes();
            System.out.println(node.getChildNodes().item(0).getTextContent());
        }

    } catch (ParserConfigurationException | SAXException | IOException e) {
        e.printStackTrace();
    } catch (XPathExpressionException e) {
        e.printStackTrace();
    }
于 2015-09-21T01:23:19.077 に答える