發表文章

目前顯示的是 7月, 2013的文章

BIRT-Automated generate pdf report

        建立產生report的engine         EngineConfig config = new EngineConfig();         String home = Platform.getInstallLocation().getURL().toString()                 .substring(6);         log.info("Pdf Report Engine home: " + home);         config.setEngineHome(home);         config.setLogConfig(Platform.getInstallLocation().getURL().toString()                 .substring(6)                 + "logs", Level.WARNING);         pdfReportEngine = new ReportEngine(config);               設定輸出格式         PDFRenderOptio...