Mark Wilson I am the creator of TopXML. I am available for international and local (Australia) contracts. I am a Solution Architect/Business Analyst. I have worked in IT in several countries (NZ, Australia, South Africa, UK) building and training teams for government and very large non-governmental organizations. I am ex-Microsoft Consulting Services. I wrote the first book on Microsoft XML published in 2000 called XML Programming with VB and ASP. Most recently I have been building tools for the SEO industry. Ask me for a 37 point SEO health-checkup for your website.
A TransformerFactory instance can be used to create Transformer and Templates objects. The
system property that determines which Factory implementation to create is named
"javax.xml.transform.TransformerFactory". This property names a
concrete subclass of the TransformerFactory abstract class. If the property is
not defined, a platform default
(org.apache.xalan.processor.TransformerFactoryImpl) is be used.
You can specify the stylesheet to use for
transformation, and then obtain new instances of a Transformer instance. You
can also use this to generate a new
Templates object for multiple transformations using the same stylesheet.
Method Overviews
Important methods of this class
are newTransformer() and newTemplates(Source
source)
Example of newTransformer()
newTransformer() method is used to create a new
Transformer object that performs a copy of the source to the result.