Search in XML File with XPath in Android

后端 未结 1 1779

I\'m developping an application on android!

Well I have a little conflict now, I want to execute an XPath query but I didn\'t arrive to solve this problem.

<

相关标签:
1条回答
  • 2020-12-09 06:40

    Look at this example:

    import java.io.FileReader;
    import javax.xml.xpath.XPath;
    import javax.xml.xpath.XPathConstants;
    import javax.xml.xpath.XPathFactory;
    import org.w3c.dom.Element;
    import org.w3c.dom.NodeList;
    import org.xml.sax.InputSource;
    
    public class GuestList {
    
      public static void main(String[] args) throws Exception {
        XPathFactory factory = XPathFactory.newInstance();
        XPath xPath = factory.newXPath();
        NodeList shows = (NodeList) xPath.evaluate("/schedule/show", 
                new InputSource(new FileReader("tds.xml")), XPathConstants.NODESET);
    
        for (int i = 0; i < shows.getLength(); i++) {
          Element show = (Element) shows.item(i);
          String guestName = xPath.evaluate("guest/name", show);
          String guestCredit = xPath.evaluate("guest/credit", show);
          System.out.println(show.getAttribute("weekday") + ", " + show.getAttribute("date") + " - "
              + guestName + " (" + guestCredit + ")");
        }
      }
    
    }
    

    The rest of examples are here : http://jexp.ru/index.php/Java_Tutorial/XML/XPath

    0 讨论(0)
提交回复
热议问题