将 itext pdf 保存为不存在的 blob。

Save itext pdf as blob without physical existence.

我正在使用此代码通过 iText 生成 PDF。首先,它将 HTML 创建为 PDF,然后将 PDF 转换为字节数组或 BLOB 或字节数组。 我不想在我的服务器上创建任何实体的 pdf 存储。首先,我想使用 itext 将 HTML 转换为 PDF 的 blob,然后我想将该 blob 存储在我的数据库中(存储在 DB 中,我将完成)。

          String userAccessToken=requests.getSession()
                    .getAttribute("access_token").toString();
          Document document = new Document(PageSize.LETTER);
          String name="/pdf/invoice.pdf";
          PdfWriter pdfWriter = PdfWriter.getInstance
               (document, new FileOutputStream(requests.getSession().getServletContext().getRealPath("")+"/assets"+name));
          document.open();
          document.addAuthor("Real Gagnon");
          document.addCreator("Real's HowTo");
          document.addSubject("Thanks for your support");
          document.addTitle("Please read this ");
          XMLWorkerHelper worker = XMLWorkerHelper.getInstance();

          //data is an html string 
          String str = data;
          worker.parseXHtml(pdfWriter, document, new StringReader(str));
          document.close();
          ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
          PdfWriter.getInstance(document, byteArrayOutputStream);
          byte[] pdfBytes = byteArrayOutputStream.toByteArray();

          link=name;
          System.out.println("Byte array is "+pdfBytes);

问题:- 使用 itext 将 html 转换为 pdf BLOB,没有 PDF 的物理存在。

写入ByteArrayOutputStream(而不是FileOutputStream):

PdfWriter pdfWriter = PdfWriter.getInstance
           (document, new ByteArrayOutputStream());

这个问题的另一个答案几乎正确,但不完全正确。

您可以在创建 PdfWriter 时使用任何 OutputStream。如果你想完全在内存中创建一个文件,你可以像这样使用 ByteArrayOutputStream

ByteArrayOutputStream baos = new ByteArrayOutputStream();
Document document = new Document();
PdfWriter.getInstance(document, baos);
document.open();
// add stuff
document.close();
byte[] pdf = baos.toByteArray();

简而言之:首先创建一个ByteArrayOutputStream,然后将此OutputStream传递给PdfWriter,然后在文档关闭后,您可以从[=11]中获取字节=].

(在另一个答案中,无法检索字节。另外:重要的是您不要在文档关闭之前尝试检索字节。)