我正在使用iText 2.1.0版创建PDF。我必须在表的单元格中创建一个“详细”单元格。我这样做是在该单元格中嵌套一个表。这种方法的问题在于,嵌套表的边框不会触及容器单元格的边框。我正在寻找的是嵌套在单元格内的表格,该表格的边框与嵌套的表格边框没有区别。

我有这样的测试。我在循环中执行此操作,以将单元格内的表添加到外部表:

PdfPCell testCell = new PdfPCell(new Paragraph("Test"));
//I want this border to touch the containerCell borders.
testCell.setBorder(PdfPCell.BOTTOM);
testTable =  new PdfPTable(2);

testTable.addCell(testCell);
testTable.addCell(testCell);
testTable.addCell(testCell);
testTable.addCell(testCell);

PdfPCell containerCell = new PdfPCell();
containerCell.addElement(testTable);
outerTable.addCell(containerCell);

谢谢。

最佳答案

我想我终于找到了:

testTable = new PdfPTable(1);
PdfPCell c2;
testTable.addCell("aaaa");
testTable.addCell("bbbb");

c2 = new PdfPCell (testTable);//this line made the difference
c2.setPadding(0);
outerTable.addCell(c2);

这里的窍门是在PdfPCell构造函数之一中使用表。

08-04 09:24