我已经看到在http://developers.itextpdf.com/examples/tables/clone-large-tables
中解释了在itext 7中处理大表的最佳方法我在另一张桌子里面有一张桌子。如果大桌子是内桌怎么办?
Table outTable = new Table(new float[]{1f},true);
Cell cellHeader1 = new Cell();
cellHeader1.add(new Paragraph("Header 1").addStyle(style));
outTable.addHeaderCell(cellHeader1);
document.add(outTable);
for (int i=0; i<smallArray.size();i++) {
Table innerTable = new Table(new float[]{0.5f,0.5f},true);
Cell cellHeader2 = new Cell(1,2);
cellHeader2.add(new Paragraph("Header 2").addStyle(style));
innerTable.addHeaderCell(cellHeader2);
Cell cellInnerTable = new Cell();
cellInnerTable.add(innerTable);
outTable.addCell(cellInnerTable);
for(int j=0;j<bigArray.size();j++){
//add cells to innerTable;
if (j%20==0){
innerTable.flush(); (1)
outTable.flush(); (2)
}
}
innerTable.complete(); (1)
}
outTable.complete();
(2)此刷新并不能解决内存问题。
(1)这些行在Table对象第539行返回NullPointerException,因为document为null。 outTable的父母是文件,所以&#39; flush&#39;方法将数据刷新到文档中,但innerTable的父级是outTable,而不是文档。有没有办法将innerTable刷新到outTable和outTable进入文档?
如果我将文档设置为innerTable,那么我就不会得到NullPointerException: innerTable.setDocument(文件);
它没有表现得应该如此,因为现在innerTable被刷新到文档中,而不是刷到outTable中,它做了奇怪的事情。
非常感谢!
答案 0 :(得分:0)
不幸的是,只有将大型表直接添加到Document
时,才支持大型表。不支持内部大表,并且没有计划在最近的将来添加对内部大表的支持。
答案 1 :(得分:0)
尝试:
for(int j=0;j<bigArray.size();j++){
//add cells to innerTable;
if (j%20==0){
Cell cellContent = new Cell(1,2).add(innerTable);
outTable.addCell(cellContent);
innerTable.flushContent(); // API says is internal but is public and works OK
outTable.flush();
}
}