JAXP XSLT: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
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/dom/package-frame.html javax.xml.transform.dom]</tt> defines <tt>SAXParserFactory</tt> and exception classes. | |||
* <tt>[https://docs.oracle.com/javase/8/docs/api/org/xml/sax/package-frame.html org.xml.sax]</tt> the basic SAX interfaces. | |||
<font color=red> | <font color=red> |
Revision as of 00:34, 11 November 2016
Internal
Overview
The XSLT API allows writing XML data or converting it to other formats.
Component Packages
- javax.xml.transform.dom defines SAXParserFactory and exception classes.
- org.xml.sax the basic SAX interfaces.
NEXT: Build based on:
- https://docs.oracle.com/javase/tutorial/jaxp/intro/extensible.html
- https://docs.oracle.com/javase/tutorial/jaxp/xslt/index.html