我有在 PDF 文件中生成表格的 Java 代码,但即使需要更多字段,它也无法生成多个页面。
如何为页面添加自动增量功能?
这是我所指的代码。
public static void main(String[] args) {
PDDocument doc = new PDDocument();
PDPage page = new PDPage();
doc.addPage(page);
PDPageContentStream contentStream = new PDPageContentStream(doc, page);
String[][] content = { { "a", "b", "1" }, { "c", "d", "2" },
{ "e", "f", "3" }, { "g", "h", "4" }, { "i", "j", "5" } };
drawTable(page, contentStream, 700, 100, content);
contentStream.close();
doc.save("test.pdf");
}