在利用iText所有后续页重复PdfPTable头(Repeat PdfPTable header

2019-06-26 20:40发布

我怎么能重复的标题PdfPTable中的所有页面,如果表的长度超过一页?

Answer 1:

看看setHeaderRows(int headerRows)PdfPTable 。 那里定义为标题行应坚持在新的页面。

table.setHeaderRows(1)

用于第一行作为一个报头。

见API 。



文章来源: Repeat PdfPTable header in all the continuation pages using iText
标签: java itext