com.aspose.words.jasperreports
Class AWOdtExporter

java.lang.Object
  extended by AWAbstractExporter
      extended by com.aspose.words.jasperreports.AWOdtExporter

public class AWOdtExporter
extends AWAbstractExporter

Exports a JasperReports report to the ODT format. Use this class to export a report to the ODT format programmatically.

The following code sample demonstrates the usage of the class:

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


Constructor Summary
AWOdtExporter()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AWOdtExporter

public AWOdtExporter()