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

xdev.tableexport.export.writer.XMLToFileWriter Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package xdev.tableexport.export.writer;

/*-
 * #%L
 * XDEV BI Suite
 * %%
 * Copyright (C) 2011 - 2020 XDEV Software
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */


import java.io.File;

import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRExporter;
import net.sf.jasperreports.engine.JRExporterParameter;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.export.JRXmlExporter;


/**
 * Write the generated report object into XML format.
 * 
 * 

* The generated XML content is placed into a {@code File}. *

* * @author XDEV Software(FHAE) */ @SuppressWarnings("deprecation") public class XMLToFileWriter implements ExportWriter { private final File file; /** * Constructs a {@link XMLToFileWriter} object given a {@link File} object. * * @param file a {@link File} object to write to. */ public XMLToFileWriter(final File file) { this.file = file; } /** * {@inheritDoc} */ @Override public void write(JasperPrint jasperPrint) throws ExportWriterException { final JRExporter exporter = new JRXmlExporter(); try { exporter.setParameter(JRExporterParameter.OUTPUT_FILE,this.file); exporter.setParameter(JRExporterParameter.JASPER_PRINT,jasperPrint); exporter.exportReport(); } catch(JRException e) { throw new ExportWriterException(e); } catch(Exception ie) { throw new ExportWriterException(ie); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy