添加页脚所有页面文档

时间:2017-10-26 08:36:15

标签: java pdf itext document

我正在用Java创建一个pdf。我想将相同的文本添加到PDF的所有页面。我不能这样做,因为页数不是恒定的。你能帮忙吗?

import com.lowagie.text.Document;

ColumnText.showTextAligned(writer.getDirectContent(), Element.ALIGN_CENTER, new Phrase("MEPSAN PETROL CİHAZLARI SAN. TİC. A.Ş.", new Font(bf, 6, Font.BOLD)), 100, 30, 0);

以上代码仅添加到当前页面。 我该如何改进呢?

1 个答案:

答案 0 :(得分:1)

您可以在com.lowagie.text包中使用HeaderFooter类。

以下是一个可供参考的工作代码示例:

https://www.programcreek.com/java-api-examples/index.php?api=com.lowagie.text.HeaderFooter

以下是HeaderFooter类的文档:

http://www.docjar.com/docs/api/com/lowagie/text/HeaderFooter.html

评论或收件箱,您需要进一步的帮助/澄清。