Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
StiExportManager.StiReport report = StiSerializeManager.deserializeReport(new File(reportPath));
report.render();
try (FileOutputStream out = new FileOutputStream("report.pdf")) {
StiExportManager.exportPdf(report, out);
// StiExportManager.exportExcel(report, out);
// StiExportManager.exportWord(report, out);
// StiExportManager.exportHtml(report, out);
}report.render() — build the document before exporting.StiExportManager.exportPdf/exportExcel/exportWord/…(report, outputStream) — write the result in the chosen format.StiExportManager method serializes the rendered report to one format, so the same document can be saved as PDF, Office or image files.