JAXP XSLT: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 2: Line 2:


* [[JAXP#XSLT_Support|JAXP]]
* [[JAXP#XSLT_Support|JAXP]]
* [[XSLT]]
=Overview=
The [[XSLT]] API allows writing XML data or converting it to other formats.
=Component Packages=
* <tt>[https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/ package-frame.html javax.xml.transform]</tt> defines the factory class to get a <tt>Transformer</tt> object.
* <tt>[https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/dom/package-frame.html javax.xml.transform.dom]</tt> defines the <tt>DOMSource</tt> and <tt>DOMResult</tt> classes that allow using a DOM as an input or output for a transformation.
* <tt>[https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/sax/package-frame.html javax.xml.transform.sax]</tt> defines the <tt>SAXSource</tt> and <tt>SAXResult</tt> classes that allow using a SAX event generator as input  as an input to a transformation.
* <tt>[https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/stream/package-frame.html javax.xml.transform.stream]</tt> defines the <tt>StreamSource</tt> and <tt>StreamResult</tt> classes that allow using an I/O Stream as input or output to a transformation.




Line 7: Line 19:
NEXT: Build based on:
NEXT: Build based on:
* https://docs.oracle.com/javase/tutorial/jaxp/intro/extensible.html
* https://docs.oracle.com/javase/tutorial/jaxp/intro/extensible.html
* https://docs.oracle.com/javase/tutorial/jaxp/xslt/index.html
</font>
</font>

Latest revision as of 00:49, 11 November 2016

Internal

Overview

The XSLT API allows writing XML data or converting it to other formats.

Component Packages


NEXT: Build based on: