0

xml はhttp://thecybersoft.us/BridalExpo/Getmember.xmlで入手できます。

    XPathFactory xpathfactory = XPathFactory.newInstance();
    XPath xpath = xpathfactory.newXPath();
    try {
         xpathexpression = xpath.compile("//@[name()='diffgr:id']");//bookstore//book
            result = xpathexpression.evaluate(doc,XPathConstants.NODESET);
           Log.v(result.toString(), "Value of result");
    } catch (XPathExpressionException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

上記のコードでは、属性ごとにノードを取得し、それぞれのノードの子ノードを取得するにはどうすればよいですか。また、このxmlのルートノードは何ですか

4

1 に答える 1