页面末尾 PdfPTable 中的重复行?

Repeated lines in PdfPTable at the end of the page?

我正在使用 PdfPTable (iText) 来打印 table,其中填充了一些值列表。

问题是,如果 PdfPTable 显示多页,它的最后一行打印在第一页的末尾,ALSO 在第二个开头。

请在下面找一个例子:


编辑:

请找到下面的代码:

protected static PdfPTable addUserList(PdfWriter writer, Document document, List<MyObject> objects) throws Exception {

    PdfPTable headerTable = new PdfPTable(4);
    headerTable.setWidthPercentage(100);
    headerTable.setWidths(new int[] { 4, 7, 5, 3 });
    PdfPCell headerCell = PDFUtils.makeDefaultCell(1);
    headerCell.setBorderColor(Color.WHITE);
    headerCell.setBorder(PdfPCell.RIGHT);
    headerCell.setBorderWidth(1f);

    Phrase phrase = new Phrase("Column1", Style.OPIFICIO_12_BOLD_WHITE);
    headerCell.setHorizontalAlignment(Element.ALIGN_CENTER);
    headerCell.setPhrase(phrase);
    headerTable.addCell(headerCell);

    phrase = new Phrase("Column2", Style.OPIFICIO_12_BOLD_WHITE);
    headerCell.setPhrase(phrase);
    headerCell.setHorizontalAlignment(Element.ALIGN_CENTER);
    headerTable.addCell(headerCell);

    phrase = new Phrase("Column3", Style.OPIFICIO_12_BOLD_WHITE);
    headerCell.setPhrase(phrase);
    headerCell.setHorizontalAlignment(Element.ALIGN_CENTER);
    headerTable.addCell(headerCell);

    phrase = new Phrase("Column4", Style.OPIFICIO_12_BOLD_WHITE);
    Chunk chunk = new Chunk("(1)", Style.OPIFICIO_6_BOLD_WHITE);
    chunk.setTextRise(7f);
    phrase.add(chunk);
    chunk = new Chunk("(XX)", Style.OPIFICIO_8_BOLD_WHITE);
    chunk.setTextRise(1f);
    phrase.add(chunk);
    headerCell.setPhrase(phrase);
    headerCell.setHorizontalAlignment(Element.ALIGN_CENTER);
    headerCell.setBorder(PdfPCell.NO_BORDER);
    headerTable.addCell(headerCell);

    PdfPTable userTable = new PdfPTable(4);
    userTable.setWidthPercentage(100);
    userTable.setWidths(new int[] { 4, 7, 5, 3 });
    PdfPCell cell = PDFUtils.makeDefaultCell(1);
    cell.setBackgroundColor(null);
    cell.setPaddingTop(2f);
    cell.setPaddingLeft(6f);
    cell.setPaddingRight(6f);

    for (MyObject object : objects) {

        if (object != null) {

            cell.setHorizontalAlignment(Element.ALIGN_LEFT);

            if (object.getAttribute1() != null) {
                phrase = new Phrase(object.getAttribute1(), Style.FUTURASTD_10_NORMAL_BLACK);
            } else {
                phrase = new Phrase("", Style.FUTURASTD_10_NORMAL_BLACK);
            }
            cell.setBorderWidth(1f);
            cell.setBorderColor(Color.WHITE);
            cell.setBorder(PdfPCell.RIGHT);
            cell.setPhrase(phrase);
            userTable.addCell(cell);

            phrase = new Phrase(object.getAttribute2(), Style.FUTURASTD_10_NORMAL_BLACK);
            cell.setBorderWidth(1f);
            cell.setBorderColor(Color.WHITE);
            cell.setBorder(PdfPCell.RIGHT);
            cell.setPhrase(phrase);
            userTable.addCell(cell);

            phrase = new Phrase(object.getAttribute3(), Style.FUTURASTD_10_NORMAL_BLACK);
            cell.setBorderWidth(1f);
            cell.setBorderColor(Color.WHITE);
            cell.setBorder(PdfPCell.RIGHT);
            cell.setPhrase(phrase);
            userTable.addCell(cell);

            phrase = new Phrase(object.getAttribute4(), Style.FUTURASTD_10_NORMAL_BLACK);
            cell.setBorder(PdfPCell.NO_BORDER);
            cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
            cell.setPhrase(phrase);
            userTable.addCell(cell);

        }
    }

    PdfPTable mainTable = new PdfPTable(1);
    mainTable.setWidthPercentage(100);
    mainTable.setSplitLate(false);
    mainTable.setHeaderRows(1);
    PdfPCell cellH = new PdfPCell();
    cellH.addElement(headerTable);
    cellH.setBorder(Rectangle.NO_BORDER);
    cellH.setCellEvent(new PDFUtils.CellBackgroundRedRecap());
    mainTable.addCell(cellH);

    if (userTable.getRows().size() > 0) {
        PdfPCell cellUser = PDFUtils.makeDefaultCell(1);
        cellUser.setPaddingTop(7f);
        cellUser.setCellEvent(new PDFUtils.CellBackgroundRecap());
        cellUser.setBorder(PdfCell.NO_BORDER);
        cellUser.addElement(userTable);
        mainTable.addCell(cellUser);
    }

    return mainTable;
}

这个问题实际上在几年前就解决了(正如@Bruno 在评论中指出的那样)。

因此,解决方案是将旧的 iText 版本替换为问题已解决的更新版本。

事实上,OP 在他的项目的另一个模块的 pom.xml 中有一个旧版本与他正在修改的模块冲突。他已经删除了它,现在可以使用了。


从版本 2.x(包括非官方 4.2.0)更新到 5.x 至少需要更新 import 语句,因为 itext 已从 com.lowagie 移动到 com.itextpdf。可能需要进一步更改以适应实际 API 更改,例如签名 API 在 5.3.x 版本中进行了大修;不过,基本的 API 结构在 5.x 版本期间保持相当稳定。

此外,从低于 7 的任何内容更新到 7.x 需要更大的更改,因为整个 iText API 已经过重新设计以摆脱早期 [=30= 的次优方面] 设计.