Class JaxoXsltTransformer


  • public final class JaxoXsltTransformer
    extends java.lang.Object
    Perform xslt transformations.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void transform​(java.io.File inFile, java.io.File outFile, java.io.File xslFile, java.util.Map<java.lang.String,​java.lang.String> parameters, java.util.Map<java.lang.String,​java.lang.String> properties)
      Transform an xml file with xslt.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • transform

        public static void transform​(java.io.File inFile,
                                     java.io.File outFile,
                                     java.io.File xslFile,
                                     java.util.Map<java.lang.String,​java.lang.String> parameters,
                                     java.util.Map<java.lang.String,​java.lang.String> properties)
                              throws java.io.IOException
        Transform an xml file with xslt.
        Parameters:
        inFile - the file to transform.
        outFile - the target file.
        xslFile - the xslt stylesheet.
        parameters - a Map of parameters for the transformation. May be null.
        properties - a Map of output properties for the transformation. May be null.
        Throws:
        java.io.IOException - if an I/O error happens.