繁体   English   中英

iText嵌套表-未呈现第一行

[英]iText nested table - first row not rendered

我正在根据列表的大小生成一个表。 表格设置为适合平均表格,共有5列和13行。

当列表大小小于5时,不显示任何内容。 如果列表大小为5或更大,则会正确显示。

Document doc = new Document(PageSize.A4, pageMargin, pageMargin, pageMargin, pageMargin);   
//5 rows for the table
PdfPTable table = new PdfPTable(5);

for (int i = 0; i < list.size(); i++) {

Object obj = list.get(i);
//this is the superior cell
PdfPCell cell = new PdfPCell();
cell.setFixedHeight(60.4f);

// Nested Table, table in the cell
PdfPTable nestedTable = new PdfPTable(2);
nestedTable.setWidthPercentage(100);
nestedTable.setWidths(new int[] { 24, 76 });

// First Cell in nested table
PdfPCell firstCell = new PdfPCell();
// fill cell...

// second cell in nested table
PdfPCell secondCell = new PdfPCell();
// fill cell

// put both cells into the nestedTable
nestedTable.addCell(firstCell);
nestedTable.addCell(secondCell);

// put nestedTable into superior table
cell.addElement(nestedTable);
table.addCell(cell);
}

doc.add(table);
doc.close();

您创建具有5列的PdfPTable 当该行完成时,即当iText包含5个单元格时,iText只会将该表行写入输出文档。 如果添加的单元格少于5个,则该行永远不会被刷新。

您说: 如果列表大小为5或更大,则显示正确。

这是不正确的。 除非单元格的数量是5的倍数,否则将不会显示最后一行。

因此,您必须确保最后一行中有5个单元格。 您可以在将表添加到文档之前,使用此便捷方法轻松地做到这一点: table.completeRow()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM