Package org.jfree.report.modules.output.table.rtf

Examples of org.jfree.report.modules.output.table.rtf.RTFProcessor


      }     
      else if (input.getExportType() == ExportType.RTF)
      {
        output.setContentType(ReportEngineOutput.CONTENT_TYPE_RTF);
       
        RTFProcessor pr = new RTFProcessor(jfreeReport);
        pr.setStrictLayout(false);       
        pr.setOutputStream(out);
        pr.processReport();       
     
      else //default to HTML
      {
        output.setContentType(ReportEngineOutput.CONTENT_TYPE_HTML);
       
        HtmlProcessor pr = new HtmlProcessor(jfreeReport);
        pr.setStrictLayout(false);
        pr.setGenerateXHTML(true);
        pr.setFilesystem(new StreamHtmlFilesystem(out));
        pr.processReport();
      }     
     
      output.setContent(out.toByteArray());   

      return output;
View Full Code Here

TOP

Related Classes of org.jfree.report.modules.output.table.rtf.RTFProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.