在我使用Itext的Java项目中我正在创建一个pdf文件,在这里我在另一个表的单元格中插入一个更大的表。
当表的内容大于页面时,我遇到问题,表格被带入下一页。相反,我想要上一页中的部分数据,只有那些超过页面的数据需要转到下一页。
如何实现这一点,下面是使用的代码。
PdfPTable outerTable = new PdfPTable(2);
outerTable.setHeaderRows(1);
outerTable.setSpacingBefore(20);
outerTable.setWidthPercentage(100);
Phrase str_head = new Phrase("Sample Image \n", subFont);
Phrase act_head = new Phrase("Steps \n", subFont);
PdfPCell cell2;
cell2 = new PdfPCell(act_head);
outerTable.addCell(cell2);
cell2 = new PdfPCell(str_head);
cell2.setBorder(Rectangle.NO_BORDER);
outerTable.addCell(cell2);
/* content row*/
cell2 = new PdfPCell("-----Sample-------");
cell2.setBorder(Rectangle.NO_BORDER);
outerTable.addCell(cell2);
PdfPTable innerTable = new PdfPTable(2);
---------------
---------------
innerTable.add("XXX")//add more rows in so that page will overlow
---------------
---------------
cell2 = new PdfPCell(innerTable);
cell2.setBorder(Rectangle.NO_BORDER);
outerTable.addCell(cell2);
答案 0 :(得分:2)
setSplitLate(false)
,setSplitRows(true)
。所以你必须为这两个表设置这些属性。请参阅文档以了解更多信息。代码看起来更像是:
outerTable.setSplitLate(false);
innerTable.setSplitLate(false);
outerTable.setSplitRows(true);
innerTable.setSplitRows(true);
我很久以前在itext 2.1.4中使用过它。因此,请检查当前版本是否支持这些。(这就是为什么我要求使用itext版本)