Package de.xima.fc.transform.xml
Class XSLUtils
- java.lang.Object
-
- de.xima.fc.transform.xml.XSLUtils
-
public final class XSLUtils extends Object
Hilfsklasse für XSL-Transformationen bis Version 2.0- Author:
- XIMA MEDIA GmbH
-
-
Constructor Summary
Constructors Constructor Description XSLUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
transform(File xmlSrcFile, String xslt, File xmlTargetFile)
static void
transform(File xmlSrcFile, String xslt, OutputStream xmlTarget)
static void
transform(Reader xmlSrcReader, String xslt, File xmlTargetFile)
static void
transform(Reader xmlSrcReader, String xslt, OutputStream xmlTarget)
static void
transform(Reader input, String xslt, Writer output)
static Map<String,List<String[]>>
transformToUpperCase(Map<String,List<String[]>> map)
-
-
-
Method Detail
-
transformToUpperCase
public static Map<String,List<String[]>> transformToUpperCase(Map<String,List<String[]>> map)
-
transform
public static void transform(File xmlSrcFile, String xslt, File xmlTargetFile) throws TransformationException
- Throws:
TransformationException
-
transform
public static void transform(File xmlSrcFile, String xslt, OutputStream xmlTarget) throws TransformationException
- Throws:
TransformationException
-
transform
public static void transform(Reader xmlSrcReader, String xslt, File xmlTargetFile) throws TransformationException
- Throws:
TransformationException
-
transform
public static void transform(Reader input, String xslt, Writer output) throws TransformationException
- Throws:
TransformationException
-
transform
public static void transform(Reader xmlSrcReader, String xslt, OutputStream xmlTarget) throws TransformationException
- Throws:
TransformationException
-
-