1

iText PDF 库从 2.0.4 升级到 5.4.1 破坏了我的应用程序中的现有功能。

将表合并到一个复杂表中不再起作用。

//Creating tables
Table table0 = new Table(2);
Table table1 = new Table(7);
Table table2 = new Table(17);
Table table3 = new Table(24);

//Setting widths for tables
table0.setWidths(widths0);
table3.setWidths(widths);
table1.setWidths(widths1);

//Inserting 3 tables into one
Cell cell;
cell = new Cell(table1);
table0.addCell(cell);
Cell cell2 = new Cell(table2);
table0.addCell(cell2);
Cell cell3 = new Cell(table3);
cell3.setColspan(2);
table0.addCell(cell3);

//Populating cells and data for table1, table2, table3...

//Adding table to my pdf document
document.add(table0);
document.close();

实际结果:table0添加到文档中的内容根本没有显示。(我尝试分别添加表 1、2、3 并且它们出现了)相同的代码适用于旧版本的 iText PDF。

BG 信息:java 版本也从 1.5 -> 1.7 升级,jBoss 从 4.0.4 -> 6.1 升级,但我认为这可能与我的问题无关。

提前谢谢了。

4

1 回答 1

1

该类Table已从 iText 中删除。它被替换为PdfPTable。你必须改变你的代码。iText 2.0.4 和 5.4.1 之间已经过去了很多年。

于 2013-07-31T10:59:55.710 回答