More Tutorials| Bioinformatics| Open Source| Photoshop| Questions?
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Use of "preceding" axis in XPath expression

                         

In this part of tutorial we are going to describe you the use of "preceding" axis in XPath expression. "preceding" axis will select each and every element or node before the given context node.

In this example we have created an XML file "persons.xml" as in our previous section, which is necessary to execute XPath query on to it. This "persons.xml" contains information related to name, age, gender of different persons.

Here is the full source code for persons.xml file as follows :



persons.xml

<?xml version="1.0" ?>
<information>
    <person id="1">
        <name>Deep</name>
        <age>34</age>
        <gender>Male</gender>
    </person>
 
     <person id="2">
        <name>Kumar</name>
        <age>24</age>
        <gender>Male</gender>
    </person>
 
    <person id="3">
        <name>Deepali</name>
        <age>19</age>
        <gender>Female</gender>
    </person>

    <!-- more persons... -->
</information>

We have put that persons.xml file in that current working directory. Now we have declared a class XPathPreceding  and in this class we are parsing the XML file with JAXP. First of all we need to load the document into DOM Document object. 

    DocumentBuilderFactory domFactory = 
    DocumentBuilderFactory.newInstance();

          domFactory.setNamespaceAware(true); 
    DocumentBuilder builder = domFactory.newDocumentBuilder();
    Document doc = builder.parse("persons.xml");

For downloading document we have created a new instance of DocumentBuilderFactory and then this instance is further going to be used in creating an object of DocumentBuilder. "setNamespaceAware()" tells that the parser produced by this code will provide full support for XML namespaces. Above lines of code parses "persons.xml" file and creates a Document object. Next we have created XPath object with the use of XPathFactory.

XPath xpath = XPathFactory.newInstance().newXPath();

XPath expression "//person/preceding::*" will select all elements that are before the start of the context node.
Here is the example code for XPathPreceding.java as follows:


XPathPreceding.java

import org.w3c.dom.*;
import javax.xml.xpath.*;
import javax.xml.parsers.*;
import java.io.IOException;
import org.xml.sax.SAXException;

public class XPathPreceding {

  public static void main(String[] args
   throws ParserConfigurationException, SAXException, 
          IOException, XPathExpressionException {

    DocumentBuilderFactory domFactory = 
       DocumentBuilderFactory.newInstance
();
    domFactory.setNamespaceAware(true)
    DocumentBuilder builder = domFactory.newDocumentBuilder();
    Document doc = builder.parse("persons.xml");
    XPath xpath = XPathFactory.newInstance().newXPath();
    XPathExpression expr = xpath.compile("//person/preceding::*");
    // Selecting person element's preceding elements name   
    Object result = expr.evaluate(doc, XPathConstants.NODESET);
    NodeList nodes = (NodeListresult;
    for (int i = 0; i < nodes.getLength(); i++){
     System.out.println(nodes.item(i).getNodeName())
    }
    expr = xpath.compile("//person/preceding::*/name/text()");
    // Selecting all person element's precding elements values   
    result = expr.evaluate(doc, XPathConstants.NODESET);
    nodes = (NodeListresult;
    for (int i = 0; i < nodes.getLength(); i++) {
     System.out.print(nodes.item(i).getNodeValue()+",  ")
  }  
  }
}


Output:



Download Source Code

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Join and Excel yourself with our Online instructor led training sessions
Training Courses
Tell A Friend
Your Friend Name

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.