当itext中不同表中的数据增加时,pdfptable标题重复

时间:2015-06-29 05:36:57

标签: java pdf-generation itext

在我的项目中,我需要在itext中创建一个包含两列的pdfptable。这两列包含两个不同的内部表(第1列包含一个内部表,第2列包含一个内部表)。现在这两个内部表都设置了标题行。我的问题是,当第2列内部表中的数据增加时,我需要重复第1列内部表的标题。 我创建了所有必需的表。但找不到任何好的解决方案 我知道这是一个奇怪的要求,但请尽可能提供帮助。

提前致谢。

1 个答案:

答案 0 :(得分:1)

实现这一目标的唯一方法是使用表格事件。有关示例,请参阅NestedTables3nested_tables3.pdf

enter image description here

这是实现此目的所需的代码:

class MyPdfPTableEvent implements PdfPTableEvent {

    public void cellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases) {
    }

    public void tableLayout(PdfPTable table, float[][] widths, float[] heights, int headerRows, int rowStart, PdfContentByte[] canvases) {
        ColumnText ct = new ColumnText(canvases[PdfPTable.TEXTCANVAS]);
        for (int i = 1; i < widths[1].length; i++) {
            Rectangle position = new Rectangle(widths[1][i - 1], heights[1], widths[1][i], heights[2]);
            ct.setSimpleColumn(position);
            ct.addText(new Phrase("This inner table header will always be repeated"));
            try {
                ct.go();
            } catch (DocumentException ex) {
            }
        }
    }
}

您必须将此事件声明到您的表格中:

PdfPTable table = new PdfPTable(2);
table.setTableEvent(new MyPdfPTableEvent());

当然:要使其正常工作,您需要添加一个空单元格,以便为您在表格事件中添加的文本提供足够的空间。