Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
java code to generate excel format from .rptdesign
RepBIRT
Could any provide or share the java code to generate the report from .rpt design into pdf/html/excel format.
Find more posts tagged with
Comments
johnw
<pre class='_prettyXprint _lang-auto _linenums:0'>package com.digiassn.blogspot.birt;
import org.eclipse.birt.core.exception.BirtException;
import org.eclipse.birt.core.framework.Platform;
import org.eclipse.birt.report.engine.api.EngineConfig;
import org.eclipse.birt.report.engine.api.EngineException;
import org.eclipse.birt.report.engine.api.IReportRunnable;
import org.eclipse.birt.report.engine.api.IRunAndRenderTask;
import org.eclipse.birt.report.engine.api.PDFRenderOption;
import org.eclipse.birt.report.engine.api.impl.ReportEngine;
public class ReportExecutor {
public static void ExecuteReport(String reportDesign)
{
try {
EngineConfig config = new EngineConfig();
Platform.startup(config);
ReportEngine engine = new ReportEngine(config);
IReportRunnable reportRunnable = engine.openReportDesign(reportDesign);
IRunAndRenderTask runAndRender = engine.createRunAndRenderTask(reportRunnable);
PDFRenderOption option = new PDFRenderOption();
option.setOutputFileName("C:/TEMP/output_test.xls");
option.setOutputFormat("XLS");
runAndRender.setRenderOption(option);
runAndRender.run();
runAndRender.close();
engine.destroy();
Platform.shutdown();
} catch (EngineException e) {
e.printStackTrace();
} catch (BirtException e) {
e.printStackTrace();
}
}
}
</pre>
RepBIRT
Hi,
When I try to generate the PDF using this code, I am getting the following exception. The font used in the report is "Arial".
25 Mar, 2012 1:09:14 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory loadFontMappingConfig
INFO: load font config in jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%207.0/webapps/WebViewerExample/WEB-INF/lib/org.eclipse.birt.runtime_3.7.2.v20120214-1408.jar!/fontsConfig.xml cost 27ms
25 Mar, 2012 1:09:14 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/ja/X11/fonts/TT cost:0ms
25 Mar, 2012 1:09:14 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_13/X11/fonts/TrueType cost:1ms
25 Mar, 2012 1:09:14 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/ru.ansi-1251/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:14 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_15/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:14 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in d:/windows/fonts cost:5ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in C:/windows/fonts cost:745ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/X11R6/lib/X11/fonts/truetype cost:1ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/ar/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in e:/WINNT/fonts cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in C:/WINNT/fonts cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_2/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/X11R6/lib/X11/fonts/tt cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/th_TH/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_8/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_7/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/X11R6/lib/X11/fonts/TTF cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/share/fonts/truetype cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in f:/WINNT/fonts cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/ko.UTF-8/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in g:/WINNT/fonts cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_5/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in f:/windows/fonts cost:1ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in d:/WINNT/fonts cost:5ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/share/fonts/ko/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/zh_TW/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in e:/windows/fonts cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/share/fonts/zh_TW/TrueType cost:1ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/share/fonts/ja/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/zh_CN.GB18030/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/share/fonts/default/TrueType cost:1ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/X/lib/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/euro_fonts/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/hi_IN.UTF-8/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/zh.GBK/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/X11R6/lib/X11/fonts/OTF cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/iso_8859_9/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/X11R6/lib/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/zh_TW.BIG5/X11/fonts/TT cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/ko/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/zh_HK.BIG5HK/X11/fonts/TT cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/KOI8-R/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/openwin/lib/locale/zh/X11/fonts/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in /usr/share/fonts/zh_CN/TrueType cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory$2 run
INFO: register fonts in g:/windows/fonts cost:0ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory loadFontMappingConfig
INFO: load font config in jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%207.0/webapps/WebViewerExample/WEB-INF/lib/org.eclipse.birt.runtime_3.7.2.v20120214-1408.jar!/fontsConfig_win32.xml cost 4ms
25 Mar, 2012 1:09:15 AM org.eclipse.birt.report.engine.layout.pdf.font.FontMappingManagerFactory loadFontMappingConfig
INFO: load font config in jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%207.0/webapps/WebViewerExample/WEB-INF/lib/org.eclipse.birt.runtime_3.7.2.v20120214-1408.jar!/fontsConfig_pdf.xml cost 6ms
birtguru
i am getting the same problem.please tell me if you got any solution of this problem.
thanks.how can we add more colours in our report.i want to generate pdf using java program and reportdesign.please help