Java XML String Transform applyXSL(File xmlFile, File xslFile, String outputFilename)

Here you can find the source of applyXSL(File xmlFile, File xslFile, String outputFilename)

Description

Transforms an xml-file (xmlFilename) using an xsl-file (xslFilename) and writes the output into file (outputFilename).

License

Apache License

Parameter

Parameter Description
xmlFile File: the xml-source-file to be transformed
xslFile File: the xsl-file with the transformation rules
outputFilename String: the name of the file the result will be written to

Declaration

public static void applyXSL(File xmlFile, File xslFile, String outputFilename) 

Method Source Code

//package com.java2s;
/**//from  w w w.j a va 2s.  c o  m
 * A utility class providing several static methods to handle DOM documents.
 * 
 * @version DESMO-J, Ver. 2.5.1d copyright (c) 2015
 * @author Nicolas Knaak and Gunnar Kiesel
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You
 * may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS"
 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 *
 */

import java.io.BufferedWriter;
import java.io.File;

import java.io.FileWriter;

import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;

public class Main {
    /**
     * Transforms an xml-file (xmlFilename) using an xsl-file (xslFilename) and
     * writes the output into file (outputFilename).
     * 
     * @param xmlFile
     *            File: the xml-source-file to be transformed
     * @param xslFile
     *            File: the xsl-file with the transformation rules
     * @param outputFilename
     *            String: the name of the file the result will be written to
     */
    public static void applyXSL(File xmlFile, File xslFile, String outputFilename) {
        try {
            // DocumentBuilderFactory docBFactory = DocumentBuilderFactory
            // .newInstance();
            // DocumentBuilder docBuilder = docBFactory.newDocumentBuilder();
            StreamSource xslStream = new StreamSource(xslFile);
            TransformerFactory transFactory = TransformerFactory.newInstance();
            Transformer transformer = transFactory.newTransformer(xslStream);
            StreamSource xmlStream = new StreamSource(xmlFile);
            StreamResult result = new StreamResult(new BufferedWriter(new FileWriter(outputFilename)));
            transformer.transform(xmlStream, result);
            result.getWriter().close();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}

Related

  1. addElementToXml(String xmlFile, String nodeToAdd, String nodeContent)
  2. addNode(String nodeType, String idField, String nodeID, File destFile, ArrayList attributes)
  3. base64encode(String decodedString)
  4. convertPlist(File info_plist_file, String script_url, Map script_parameters)
  5. convertResult(StreamResult result, StringWriter writer)
  6. convertValidatorResult(Result result, StringWriter writer)