net.sf.jasperreports.jakarta.servlets.RtfServlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasperreports-servlets Show documentation
Show all versions of jasperreports-servlets Show documentation
JasperReports Servlets Jakarta EE
The newest version!
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, Inc. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports 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.
*
* JasperReports 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JasperReports. If not, see .
*/
package net.sf.jasperreports.jakarta.servlets;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;
import jakarta.servlet.ServletException;
import jakarta.servlet.ServletOutputStream;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.sf.jasperreports.engine.DefaultJasperReportsContext;
import net.sf.jasperreports.engine.JRConstants;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.export.JRRtfExporter;
import net.sf.jasperreports.engine.util.FileBufferedOutputStream;
import net.sf.jasperreports.export.SimpleExporterInput;
import net.sf.jasperreports.export.SimpleWriterExporterOutput;
/**
* @author Ionut Nedelcu ([email protected])
*/
public class RtfServlet extends BaseHttpServlet
{
private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
@Override
public void service(
HttpServletRequest request,
HttpServletResponse response
) throws IOException, ServletException
{
List jasperPrintList = BaseHttpServlet.getJasperPrintList(request);
if (jasperPrintList == null)
{
throw new ServletException("No JasperPrint documents found on the HTTP session.");
}
Boolean isBuffered = Boolean.valueOf(request.getParameter(BaseHttpServlet.BUFFERED_OUTPUT_REQUEST_PARAMETER));
if (isBuffered)
{
FileBufferedOutputStream fbos = new FileBufferedOutputStream();
JRRtfExporter exporter = new JRRtfExporter(DefaultJasperReportsContext.getInstance());
exporter.setExporterInput(SimpleExporterInput.getInstance(jasperPrintList));
exporter.setExporterOutput(new SimpleWriterExporterOutput(fbos));
try
{
exporter.exportReport();
fbos.close();
if (fbos.size() > 0)
{
response.setContentType("application/rtf");
response.setHeader("Content-Disposition", "inline; filename=\"file.rtf\"");
response.setContentLength(fbos.size());
ServletOutputStream outputStream = response.getOutputStream();
try
{
fbos.writeData(outputStream);
fbos.dispose();
outputStream.flush();
}
finally
{
if (outputStream != null)
{
try
{
outputStream.close();
}
catch (IOException ex)
{
}
}
}
}
}
catch (JRException e)
{
throw new ServletException(e);
}
finally
{
fbos.close();
fbos.dispose();
}
// else
// {
// response.setContentType("text/html");
// PrintWriter out = response.getWriter();
// out.println("");
// out.println("");
// out.println("Empty response.");
// out.println("");
// out.println("");
// }
}
else
{
response.setContentType("application/rtf");
response.setHeader("Content-Disposition", "inline; filename=\"file.rtf\"");
JRRtfExporter exporter = new JRRtfExporter(DefaultJasperReportsContext.getInstance());
exporter.setExporterInput(SimpleExporterInput.getInstance(jasperPrintList));
OutputStream outputStream = response.getOutputStream();
exporter.setExporterOutput(new SimpleWriterExporterOutput(outputStream));
try
{
exporter.exportReport();
}
catch (JRException e)
{
throw new ServletException(e);
}
finally
{
if (outputStream != null)
{
try
{
outputStream.close();
}
catch (IOException ex)
{
}
}
}
}
}
}