我正在使用Java,我想知道如何在PDF文件中进行分页?在50行之后,我想开始在新页面上写作。
我正在使用iText库。
答案 0 :(得分:4)
您可以使用iText库在Java中创建PDF
Document document = new Document();
try {
PdfWriter.getInstance(document,
new FileOutputStream("HelloWorld.pdf"));
document.open();
document.add(
new Paragraph("Hello World"));
document.newpage();
// You are on the new page from here.
// Note that newpage method won't work on empty pages,
// so first you should add something to previous page and then call this method
// to create new page
} catch (Exception e) {
// handle exception
}
document.close();
答案 1 :(得分:1)