Package org.apache.abdera.xpath

Examples of org.apache.abdera.xpath.XPath.evaluate()


    InputStream in = XPathExample.class.getResourceAsStream("/simple.xml");
    Document<Feed> doc = Parser.INSTANCE.parse(in);
    Feed feed = doc.getRoot();
    XPath xpath = XPath.INSTANCE;
   
    System.out.println(xpath.evaluate("count(/a:feed)", feed));         // 1.0
    System.out.println(xpath.numericValueOf("count(/a:feed)", feed));   // 1.0
    System.out.println(xpath.isTrue("/a:feed/a:entry", feed));          // true (the feed has an entry)
    System.out.println(xpath.valueOf("/a:feed/a:entry/a:title", feed)); // Atom-Powered Robots Run Amok
    System.out.println(xpath.selectNodes("/a:feed/a:entry", feed));     // every entry
    System.out.println(xpath.selectSingleNode("/a:feed", feed));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.