There are generic APIs included in the J2EE API
like javax.xml.transform.
These APIs (javax.xml.transform) are
used to process:
-- transformation instructions, and
-- performing a
transformation from source to a result (included in the J2EE API).
javax.xml.transform is used to
define XSLT transformation information required to transform XML into
other
forms like HTML, WML, XML.
| Package | Description |
| javax.xml.transform | Defines the TransformerFactory and Transformer classes. These classes are used to get a object for doing transformations. After creating a transformer object, its transform() method is invoked. This method provides an input (source) and output (result). |
| javax.xml.transform.dom | Defines classes used to create input and output objects from a DOM. |
| javax.xml.transform.sax | Defines classes used to create input from a SAX parser and output objects from a SAX event handler. |
| javax.xml.transform.stream | Defines classes used to create input and output objects from an I/O stream. |
To know more about this, just click:
http:/www.roseindia.net/xml/xml-xslt-api.shtml
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java Xml Transform
Post your Comment