jasperレポートに(リンクのように)ここにあるようなバッチエクスポートを実装しようとしています。ポインタを教えてください。
私が持っているもの: 1。ポートレートテンプレート2.ランドスケープテンプレート3.レポートを生成する必要がある順序4.入力する各テンプレートのフィルタークエリを含む同じBeanデータソース
必要なもの: レポートを個別に生成し、生成されたすべてのJasperPrintオブジェクトをマージして、ページ番号を微調整します
jasperレポートに(リンクのように)ここにあるようなバッチエクスポートを実装しようとしています。ポインタを教えてください。
私が持っているもの: 1。ポートレートテンプレート2.ランドスケープテンプレート3.レポートを生成する必要がある順序4.入力する各テンプレートのフィルタークエリを含む同じBeanデータソース
必要なもの: レポートを個別に生成し、生成されたすべてのJasperPrintオブジェクトをマージして、ページ番号を微調整します
レポートを生成してからマージするため、現在のページ数と合計ページ数は、マージするレポートの数に基づいて、エクスポート中にのみ使用できます。一般的な要素を使用して同様の問題を解決しました。作成したハンドラー内のページ番号を処理するカスタムロジックを作成する必要があります。
私のレポートページ1(jr1)は縦向きで、ページ2(jr2)は横向きです。
JasperReport jr1 = (JasperReport) JRLoader.loadObject(...);
JasperReport jr2 = (JasperReport) JRLoader.loadObject(...);
JREmptyDataSource ds = new JREmptyDataSource(1);
JasperPrint print1 = JasperFillManager.fillReport(jr1, new HashMap(), ds);
ds.moveFirst();
JasperPrint print2 = JasperFillManager.fillReport(jr2, new HashMap(), ds);
List l = new ArrayList();
l.add(print1);
l.add(print2);
JRPdfExporter exp = new JRPdfExporter();
exp.setParameter(JRExporterParameter.JASPER_PRINT_LIST, l);
exp.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, SAVE_LOCATION);
exp.exportReport();
これは、ページ番号の問題で機能する可能性があります。
private static void mergeAndNumber()はIOException、DocumentException{をスローします
PdfReader readerOne = new PdfReader("c:\file_one.pdf"«»);
// we retrieve the total number of pages
int nOne = readerOne.getNumberOfPages();
PdfReader readerTwo = new PdfReader("c:\file_two.pdf"«»);
// we retrieve the total number of pages
int nTwo = readerTwo.getNumberOfPages();
int totalPages = (nOne + nTwo);
System.out.println("Total number of pages: " + (nOne + nTwo));
Rectangle psize = readerOne.getPageSize(1);
float widthPort = psize.width();
float heightPort = psize.height();
// step 1: creation of a document-object
Document document = new Document(psize, 50, 50, 50, 50);
// step 2: we create a writer that listens to the document
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("c:\file_combined.pdf"«»));
document.open();
// step 4: we add content
PdfContentByte cb = writer.getDirectContent();
PdfImportedPage importPage = null;
BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
float pageNumXPos = widthPort;
float pageNumYPos = heightPort;
for (int i = 1; i <= nOne; i++) {
document.newPage();
importPage = writer.getImportedPage(readerOne, i);
cb.addTemplate(importPage, 0,0);
cb.moveTo(400, 40);
cb.beginText();
cb.setFontAndSize(bf, 10);
//cb.showText("Page " + i + " of " + totalPages);
cb.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Page " + i + " of " + totalPages, pageNumXPos - 45, pageNumYPos - 55, 0);
cb.endText();
}
document.setPageSize(PageSize.A4.rotate());
for (int i = 1; i <= nTwo; i++) {
document.newPage();
importPage = writer.getImportedPage(readerTwo, i);
cb.addTemplate(importPage, 0,0);
cb.moveTo(400, 40);
cb.beginText();
cb.setFontAndSize(bf, 10);
cb.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Page " + (nOne + i) + " of " + totalPages, pageNumYPos - 20, pageNumXPos - 60, 0);
cb.endText();
}
document.close();
}