有用过itext 7生成PDF的大佬吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有用过itext 7生成PDF的大佬吗相关的知识,希望对你有一定的参考价值。

参考技术A   检查下有没有document.newPage()使得把数据放到下一页了。
如果没有,那就需要分析代码。但是换种思路也能解决你问题:
把数据作为附件一,附件二等形式生成在pdf的最后,那样就没人关注pdf内容的空白了。
  用iText生成PDF文档需要5个步骤:
  ①建立com.lowagie.text.Document对象的实例。
  Document document = new Document();
  ②建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。
  PDFWriter.getInstance(document, new FileOutputStream("Helloworld.PDF"));
  ③打开文档。
  document.open();
  ④向文档中添加内容。
  document.add(new Paragraph("Hello World"));
  ⑤关闭文档。
  document.close();
  通过上面的5个步骤,就能产生一个Helloworld.PDF的文件,文件内容为"Hello World"。
  建立com.lowagie.text.Document对象的实例
  com.lowagie.text.Document对象的构建函数有三个,分别是:
  public Document();
  public Document(Rectangle pageSize);
  public Document(Rectangle pageSize,
  int marginLeft,
  int marginRight,
  int marginTop,
  int marginBottom);

iText7

1 官网

http://developers.itextpdf.com/itext-java

2 form中加入表格

http://developers.itextpdf.com/content/best-itext-questions-stackoverview/interactive-forms/itext7-how-add-table-form-and-maybe-insert-new-page

http://stackoverflow.com/questions/28590487/adding-table-to-existing-pdf-on-the-same-page-itext?rq=1

3 表格中中文不显示的问题

http://bbs.csdn.net/topics/10122567

以上是关于有用过itext 7生成PDF的大佬吗的主要内容,如果未能解决你的问题,请参考以下文章

如何运用Java组件itext生成pdf

itextpdf 怎么生成表格的形式

iText 7:此 pdf 文档可能无法正确显示 Firefox

使用饼图生成 PDF -iText7

有用过tesseract OCR字符识别的吗?怎么识别率那么低

我们可以使用 iText 压缩 PDF 文件的大小吗?