Package net.sf.jasperreports.engine.export

Examples of net.sf.jasperreports.engine.export.JRTextExporter.exportReport()


    JasperPrint jasperPrint = (JasperPrint)JRLoader.loadObject(sourceFile);
    File destFile = new File(sourceFile.getParent(), jasperPrint.getName() + ".txt");

    exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
    exporter.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, destFile.toString());
    exporter.exportReport();

    System.err.println("Text creation time : " + (System.currentTimeMillis() - start));
  }
 
 
View Full Code Here


          JRTextExporter exporterTXT = new JRTextExporter();
          exporterTXT.setParameter(JRTextExporterParameter.JASPER_PRINT, print);
          exporterTXT.setParameter(JRTextExporterParameter.OUTPUT_STREAM, outputStream);
          exporterTXT.setParameter(JRTextExporterParameter.CHARACTER_WIDTH, new Float(30));
          exporterTXT.setParameter(JRTextExporterParameter.CHARACTER_HEIGHT, new Float(30));
          exporterTXT.exportReport();
          break;
        case RTF:
          logger.debug(bundle.getString("exporting-report", "rtf"));
          JRRtfExporter exporterRTF = new JRRtfExporter();
          exporterRTF.setParameter(JRExporterParameter.JASPER_PRINT, print);
View Full Code Here

          JRTextExporter exporterTXT = new JRTextExporter();
          exporterTXT.setParameter(JRTextExporterParameter.JASPER_PRINT, print);
          exporterTXT.setParameter(JRTextExporterParameter.OUTPUT_STREAM, outputStream);
          exporterTXT.setParameter(JRTextExporterParameter.CHARACTER_WIDTH, new Float(30));
          exporterTXT.setParameter(JRTextExporterParameter.CHARACTER_HEIGHT, new Float(30));
          exporterTXT.exportReport();
          break;
        case RTF:
          logger.debug(bundle.getString("exporting-report", "rtf"));
          JRRtfExporter exporterRTF = new JRRtfExporter();
          exporterRTF.setParameter(JRExporterParameter.JASPER_PRINT, print);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.