JAXP XSLT: Difference between revisions

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


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


NEXT: Build based on: