All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.caucho.xsl.package.html Maven / Gradle / Ivy

There is a newer version: 4.0.66
Show newest version


The XSLT transformation package.  XSLT transforms XML trees to XML
trees using Stylesheets.  The steps for a typical transformation are:

  1. Create the XSLT stylesheet.
  2. Read the source document.
  3. Transform the source document.

The Caucho XSL package supports two related stylesheet languages. XSLT (W3C 1.0) and 'StyleScript'. Strict XSLT stylesheets are created by parsing the XML externally, then generating the stylesheet:

StylesheetFactory factory = new Xsl();
Stylesheet style = factory.newStylesheet("mystyle.xsl");

StreamTransformer transformer = style.newStreamTransformer();

WriteStream os = Vfs.openWrite("test.html");
transformer.transform("test.xml", os);
os.close();

StyleScript stylesheets just use a different stylesheet factory.

StylesheetFactory factory = new StyleScript();
Stylesheet style = factory.newStylesheet("mystyle.xsl");

StreamTransformer transformer = style.newStreamTransformer();

WriteStream os = Vfs.openWrite("test.html");
transformer.transform("test.xml", os);
os.close();

Transformers

Resin's XSL provides several different output methods, each represented by a transformer:
  • StreamTransformer - print directly to an output stream
  • StringTransformer - create a string from the result
  • NodeTransformer - append the results to an XML node




© 2015 - 2024 Weber Informatics LLC | Privacy Policy