JAXP XSLT
Jump to navigation
Jump to search
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