我遇到了使用iText(版本5.5.2)生成的PDF问题。我有一个表应该包含各种元素,包括列表。
然而,单元格内的列表被错误地显示 - 它根本不作为列表呈现,而是列表项目彼此显示。
所以改为
- ITEM1
- ITEM2
- 项目3
醇>
我得到了
item1item2item3
我使用以下代码:
private static Paragraph list(String... items) {
Paragraph para = new Paragraph();
com.itextpdf.text.List list = new com.itextpdf.text.List(true, 10);
for (String item : items) {
list.add(new ListItem(item));
}
para.add(list);
return para;
}
document.add(list("item1","item2","item3));
PdfPTable table = new PdfPTable(2);
table.addCell("Some list");
table.addCell(list("item1","item2","item3));
document.add(table);
添加到表中的元素与添加到文档中的元素相同。区别在于,第一个正确显示为列表,第二个没有列表格式。
我在这里做错了什么?
答案 0 :(得分:6)
您正在文字模式中向List
添加PdfPTable
。那永远不会奏效。您应该在复合模式中添加List
。 文本模式和复合模式之间的区别在以下问题的答案中进行了解释:
如果您想找到更多有用的答案来解释这两个概念之间的区别,请下载免费的电子书The Best iText Questions on StackOverflow(我在那里找到了上述问题的链接)。
我还搜索了sandbox examples on the official iText website,这就是我发现ListInCell示例显示了向PdfPCell
添加列表的许多不同方法的方式:
// We create a list:
List list = new List();
list.add(new ListItem("Item 1"));
list.add(new ListItem("Item 2"));
list.add(new ListItem("Item 3"));
// We wrap this list in a phrase:
Phrase phrase = new Phrase();
phrase.add(list);
// We add this phrase to a cell
PdfPCell phraseCell = new PdfPCell();
phraseCell.addElement(phrase);
// We add the cell to a table:
PdfPTable phraseTable = new PdfPTable(2);
phraseTable.setSpacingBefore(5);
phraseTable.addCell("List wrapped in a phrase:");
phraseTable.addCell(phraseCell);
// We wrap the phrase table in another table:
Phrase phraseTableWrapper = new Phrase();
phraseTableWrapper.add(phraseTable);
// We add these nested tables to the document:
document.add(new Paragraph("A list, wrapped in a phrase, wrapped in a cell, wrapped in a table, wrapped in a phrase:"));
document.add(phraseTableWrapper);
// This is how to do it:
// We add the list directly to a cell:
PdfPCell cell = new PdfPCell();
cell.addElement(list);
// We add the cell to the table:
PdfPTable table = new PdfPTable(2);
table.setSpacingBefore(5);
table.addCell("List placed directly into cell");
table.addCell(cell);
生成的PDF(list_in_cell.pdf)看起来就像我期望的那样。
但是,有两点需要注意: