1

我在我的应用程序中使用 iText。

我将向 iText PDF 生成器类发送一个数组集合。该数组集合有 10 个项目,现在,我想在表格中显示这十个项目。

显示表格的条件是每页只显示5个项目,剩余的应该结转到下一页并显示在表格中。

float[] colsWidth = {0.5f,4f,1.4f,1.4f}; 
PdfPTable itemListTab = new PdfPTable(colsWidth);

有什么建议么?

4

1 回答 1

1

在遍历您的数组时,每隔五个元素,将您的表格添加到文档中,开始一个新页面,然后创建一个新表格。

if (/* 5 elements */) {
    // add your table to the document
    document.add(itemListTab);

    // create a new page
    document.newPage();

    // create a new table
    itemListTab = new PdfPTable(colsWidth);
}
于 2012-06-21T11:49:53.007 回答