JAXP XSLT: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
* [[JAXP#XSLT_Support|JAXP]] | * [[JAXP#XSLT_Support|JAXP]] | ||
* [[XSLT]] | |||
=Overview= | =Overview= | ||
The XSLT API allows writing XML data or converting it to other formats. | 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. | |||
<font color=red> | <font color=red> |
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
- package-frame.html javax.xml.transform defines the factory class to get a Transformer object.
- javax.xml.transform.dom defines the DOMSource and DOMResult classes that allow using a DOM as an input or output for a transformation.
- javax.xml.transform.sax defines the SAXSource and SAXResult classes that allow using a SAX event generator as input as an input to a transformation.
- javax.xml.transform.stream defines the StreamSource and StreamResult classes that allow using an I/O Stream as input or output to a transformation.
NEXT: Build based on:
- https://docs.oracle.com/javase/tutorial/jaxp/intro/extensible.html
- https://docs.oracle.com/javase/tutorial/jaxp/xslt/index.html