table 单元格中的大 table 调用分页符

Large table in table cell invoke page break

我有一个单列的 PdfPTable。一页适合 50 行。如果我向 table 添加一些文本数据(例如,300 行),报告工作正常。当我将 PdfPTable 添加到单元格中时(例如,20 个字符串单元格、PdfPTable(其中包含 20 行或更少行)和 270 个字符串单元格),所有工作也都很好:

/--------
20 string rows
inner table (20 rows)
10 string rows
/-------
...additional rows

但是,当我的内部 table 有更多行时(mainTable[20 string rows, innerTable[90 string rows], 270 string rows],报告第一页中断,并在第二页开始 innerTable 输出.

/---------
20 string rows
whitespace for 30 rows
/---------
inner table (50 rows from 90)
/---------
inner table (40 rows from 90)
..additional data

我需要这个:

/---------
20 string rows
inner table (30 rows from 90)
/---------
inner table (50 rows from 90)
/---------
inner table (10 rows from 80)
..additional data

有人知道解决方案吗?

ps itext 版本 - 2.1.7

请查看 NestedTables2 示例。在这个例子中,我们告诉 iText 只要一行不适合页面就可以拆分单元格:

这不是默认设置:默认情况下,iText 会尝试通过将行转发到下一页来保持行的完整性。只有当行不适合页面时,才会拆分行。

更改默认值需要在代码中添加一行。该行称为:table.setSplitLate(false);

这是创建屏幕截图中显示的 PDF 的完整方法:

public void createPdf(String dest) throws IOException, DocumentException {
    Document document = new Document();
    PdfWriter.getInstance(document, new FileOutputStream(dest));
    document.open();
    PdfPTable table = new PdfPTable(2);
    table.setSplitLate(false);
    table.setWidths(new int[]{1, 15});
    for (int i = 1; i <= 20; i++) {
        table.addCell(String.valueOf(i));
        table.addCell("It is not smart to use iText 2.1.7!");
    }
    PdfPTable innertable = new PdfPTable(2);
    innertable.setWidths(new int[]{1, 15});
    for (int i = 0; i < 90; i++) {
        innertable.addCell(String.valueOf(i + 1));
        innertable.addCell("Upgrade if you're a professional developer!");
    }
    table.addCell("21");
    table.addCell(innertable);
    for (int i = 22; i <= 40; i++) {
        table.addCell(String.valueOf(i));
        table.addCell("It is not smart to use iText 2.1.7!");
    }
    document.add(table);
    document.close();
}

请注意,您不应使用 iText 2.1.7。如果你这样做,你可能会与你的雇主、客户、投资者发生问题。在免费电子书的法律部分阅读更多相关信息 The Best iText Questions on Whosebug