Jump to content

reiz

Members
  • Posts

    1
  • Joined

  • Last visited

 Content Type 

Forum

Downloads

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Events

Profiles

Posts posted by reiz

  1. Hi,

     

    I have downloaded the newest version 3.0 and create a Report with iReport. I export the report in PDF and in HTML. the PDF export ist ok, but in the html export some static texts are missing!

    Here ist the code for the html export.

     

    Code:

    ByteArrayOutputStream output = new ByteArrayOutputStream();
    JRHtmlExporter exporterRtf = new JRHtmlExporter();
    exporterRtf.setParameter(JRHtmlExporterParameter.JASPER_PRINT, lPrint);
    exporterRtf.setParameter(JRHtmlExporterParameter.OUTPUT_STREAM, output);
    exporterRtf.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
    exporterRtf.setParameter(JRHtmlExporterParameter.IGNORE_PAGE_MARGINS, Boolean.TRUE);
    exporterRtf.exportReport();
    bytes = output.toByteArray();
×
×
  • Create New...