我终于将PDF文件转换为iText。要创建的文档的要求是微不足道的。有了iText,我一直在使用像
这样的东西for (Foo foo : foos) {
document.add(new Paragraph(foo.getName()));
}
PDFBox相当于什么? Their Hello World example并没有真正提供线索。
答案 0 :(得分:1)
PDFBox没有用于生成文本块的高级API(尚未)。有一些文章如 How can I create fixed-width paragraphs with PDFbox? How to generate multiple lines in PDF using Apache pdfbox
此外,还有https://github.com/dhorions/boxable等项目将表格格式添加到PDFBox。