1

レポート テンプレートに複数回入力して、結果を 1 つの PDF ファイルにエクスポートできるかどうかを知りたいです。今のところ、これは単一のレポートを生成するための私のコードです:

            String input=FacesContext.getCurrentInstance().getExternalContext().getRealPath("/report.jrxml");

        File reporte= new File(input);

        design = JRXmlLoader.load(reporte);

        report = JasperCompileManager.compileReport(design);
        print= JasperFillManager.fillReport(report, parametros, new JREmptyDataSource());

        byte[]archivo=JasperExportManager.exportReportToPdf(print);
        InputStream stream=new ByteArrayInputStream(archivo);

レポート テンプレートはすべてのページで同じですが、生成されたレポートごとに 1 つのパラメータが異なります。

4

0 に答える 0