Java XPath
January 25, 2010
Leave a comment
Quick way to extract data from XML is XPath.
http://www.whitebeam.org/library/guide/TechNotes/xpathtestbed.rhtm
http://www.whitebeam.org/library/guide/TechNotes/xpath.rhtm
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathFactory;
import java.io.*;
String xmlData = "place the XML Data here.";
XPath xpath = XPathFactory.newInstance().newXPath();
InputStream inStream = new ByteArrayInputStream(xmlData.getBytes());
InputSource inputSource = new InputSource(inStream);
String nodeValue = xpath.evaluate("//nodeName", inputSource);
System.out.println("nodeValue==>" + nodeValue);
Categories: XML
java xpath, xpath



