Presentation is loading. Please wait.

Presentation is loading. Please wait.

CSE 6331 © Leonidas Fegaras XML Tools1 XML Tools.

Similar presentations


Presentation on theme: "CSE 6331 © Leonidas Fegaras XML Tools1 XML Tools."— Presentation transcript:

1 CSE 6331 © Leonidas Fegaras XML Tools1 XML Tools

2 CSE 6331 © Leonidas Fegaras XML Tools2 DOM The Document Object Model (DOM) is a platform- and language-neutral interface that allows programs and scripts to dynamically access and update the content and structure of XML documents. The following is part of the DOM interface: public interface Node { public String getNodeName (); public String getNodeValue (); public NodeList getChildNodes (); public NamedNodeMap getAttributes ();... } public interface Element extends Node { public Node getElementsByTagName ( String name );... } public interface Document extends Node { public Element getDocumentElement ();... } public interface NodeList { public Node item ( int index ); public int getLength (); public Node item ( int index ); }

3 CSE 6331 © Leonidas Fegaras XML Tools3 DOM Example import java.io.File; import javax.xml.parsers.*; import org.w3c.dom.*; class Test { public static void main ( String args[] ) throws Exception { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(new File("depts.xml")); NodeList nodes = doc.getDocumentElement().getChildNodes(); for (int i=0; i<nodes.getLength(); i++) { Node n = nodes.item(i); NodeList ndl = n.getChildNodes(); for (int k=0; k<ndl.getLength(); k++) { Node m = ndl.item(k); if ( (m.getNodeName() == "dept") && (m.getFirstChild().getNodeValue() == "cse") ) { NodeList ncl = ((Element) m).getElementsByTagName("tel"); for (int j=0; j<ncl.getLength(); j++) { Node nc = ncl.item(j); System.out.print(nc.getFirstChild().getNodeValue()); } } }

4 CSE 6331 © Leonidas Fegaras XML Tools4 SAX SAX is the Simple API for XML that allows you to process a document as it's being read (in contrast to DOM, which requires the entire document to be read before it takes any action). The SAX API is event based. The XML parser sends events, such as the start or the end of an element, to an event handler, which processes the information. Parser events: void startDocument () Receive notification of the beginning of a document. void endDocument () Receive notification of the end of a document. void startElement ( String namespace, String localName, String qName, Attributes atts ) Receive notification of the beginning of an element. void endElement ( String namespace, String localName, String qName ) Receive notification of the end of an element. void characters ( char[] ch, int start, int length ) Receive notification of character data.

5 CSE 6331 © Leonidas Fegaras XML Tools5 SAX Example import java.io.FileReader; import javax.xml.parsers.*; import org.xml.sax.*; import org.xml.sax.helpers.*; class SimpleHandler extends DefaultHandler { public static void main ( String args[] ) throws Exception { SAXParserFactory pf = SAXParserFactory.newInstance(); SAXParser parser = pf.newSAXParser(); XMLReader reader = parser.getXMLReader(); SimpleHandler handler = new SimpleHandler(); parser.parse(new InputSource(new FileReader("a.xml")), handler); } public SimpleHandler () { super(); }

6 CSE 6331 © Leonidas Fegaras XML Tools6 SAX Example (cont.) public void startDocument () { System.out.println("Start document"); } public void endDocument () { System.out.println("End document"); } public void startElement ( String uri, String name, String tag, Attributes atts ) { System.out.println("Start element: " + tag); } public void endElement ( String uri, String name, String tag ) { System.out.println("End element: " + tag); } public void characters ( char text[], int start, int length ) { System.out.print("Characters: \""); for (int i = start; i < start + length; i++) System.out.print(text[i]); System.out.print("\"\n"); }

7 CSE 6331 © Leonidas Fegaras XML Tools7 XSL Transformation A stylesheet specification language for converting XML documents into various forms (XML, HTML, plain text, etc). Can transform each XML element into another element, add new elements into the output file, or remove elements. Can rearrange and sort elements, test and make decisions about which elements to display, and much more. Based on Xpath: <xsl:stylesheet version=’1.0’ xmlns:xsl=’http//www.w3.org/1999/XSL/Transform’>

8 CSE 6331 © Leonidas Fegaras XML Tools8 XSLT Templates XSL uses XPath to define parts of the source document that match one or more predefined templates. When a match is found, XSLT will transform the matching part of the source document into the result document. The parts of the source document that do not match a template will end up unmodified in the result document. Form: … The default (implicit) templates visit all nodes and strip out all tags:

9 CSE 6331 © Leonidas Fegaras XML Tools9 Other XSLT Elements select the value of an XML element and add it to the output stream of the transformation, e.g.. copy the entire XML element to the output stream of the transformation. apply the template rules to the elements that match the XPath expression. … add an element to the output with a tag-name derived from the XPath. Example: <xsl:stylesheet version = ’1.0’ xmlns:xsl=’http://www.w3.org/1999/XSL/Transform’>

10 CSE 6331 © Leonidas Fegaras XML Tools10 Copy the Entire Document <xsl:stylesheet version = ’1.0’ xmlns:xsl=’http://www.w3.org/1999/XSL/Transform’>

11 CSE 6331 © Leonidas Fegaras XML Tools11 More on XSLT Conflict resolution: more specific templates overwrite more general templates. Templates are assigned default priorities, but they can be overwritten using priority=“n” in a template. Modes can be used to group together templates. No mode is an empty mode. Conditional and loop statements: body Variables can be used to name data: value Variables are used as {$x} in XPaths.

12 CSE 6331 © Leonidas Fegaras XML Tools12 Using XSLT import java.io.FileReader; import javax.xml.parsers.*; import org.xml.sax.*; import org.xml.sax.helpers.*; import javax.xml.transform.*; import javax.xml.transform.sax.*; import javax.xml.transform.stream.*; class Test { public static void main ( String args[] ) throws Exception { TransformerFactory tfactory = TransformerFactory.newInstance(); SAXParserFactory pfactory = SAXParserFactory.newInstance(); SAXParser parser = pfactory.newSAXParser(); XMLReader reader = parser.getXMLReader(); SimpleHandler handler = new SimpleHandler(); Transformer t = tfactory.newTransformer(new StreamSource("x.xsl")); SAXSource source = new SAXSource(reader,new InputSource("a.xml")); t.transform(source,new StreamResult("a.html")); }


Download ppt "CSE 6331 © Leonidas Fegaras XML Tools1 XML Tools."

Similar presentations


Ads by Google