当前位置: 首页 > 知识库问答 >
问题:

创建pdf并与pdfbox合并

邢和光
2023-03-14

这就是我想做的:

>

  • 使用pdfbox制作2个不同的pdf文件

    使用pdfmerger将这两个文件合并在一起

    如果要将#1保存到服务器端本地硬盘并加载#2的文件,我知道如何执行此操作。但我想做的是使用“直接从内存”。我已经搜索了这个pdfboxes中的所有方法,但仍然找不到它。

    这是我从本地文件获取的代码

    谢谢你。

    import java.io.BufferedOutputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    
    import org.apache.pdfbox.exceptions.COSVisitorException;
    import org.apache.pdfbox.pdmodel.PDDocument;
    import org.apache.pdfbox.pdmodel.PDPage;
    import org.apache.pdfbox.pdmodel.edit.PDPageContentStream;
    import org.apache.pdfbox.pdmodel.font.PDFont;
    import org.apache.pdfbox.pdmodel.font.PDTrueTypeFont;
    import org.apache.pdfbox.pdmodel.font.PDType1Font;
    import org.apache.pdfbox.util.PDFMergerUtility;
    
    /**
    * This is an example that creates a simple document
    * with a ttf-font.
    *
    * @author <a href="mailto:m.g.n@gmx.de">Michael Niedermair</a>
    * @version $Revision: 1.2 $
    */
    public class Test2
    {
    
        /**
        * create the second sample document from the PDF file format specification.
        *
        * @param file     The file to write the PDF to.
        * @param message    The message to write in the file.
        * @param fontfile  The ttf-font file.
        *
        * @throws IOException If there is an error writing the data.
        * @throws COSVisitorException If there is an error writing the PDF.
        */
        public void doIt(final String file, final String message) throws IOException, COSVisitorException
        {
    
            // the document
            PDDocument doc = null;
            try
            {
                doc = new PDDocument();
    
                PDPage page = new PDPage();
                doc.addPage(page);
                PDFont font = PDType1Font.HELVETICA_BOLD;
    
    
                PDPageContentStream contentStream = new PDPageContentStream(doc, page);
                contentStream.beginText();
                contentStream.setFont(font, 12);
                contentStream.moveTextPositionByAmount(100, 700);
                contentStream.drawString(message);
                contentStream.endText();
                contentStream.close();
    
                doc.save(file);
    
                System.out.println(file + " created!");
            }
            finally
            {
                if (doc != null)
                {
                    doc.close();
                }
            }
        }
    
        /**
         * This will create a hello world PDF document
         * with a ttf-font.
         * <br />
         * see usage() for commandline
         *
         * @param args Command line arguments.
         */
        public static void main(String[] args)
        {
    
            Test2 app = new Test2();
            Test2 app2 = new Test2();
            try {
                app.doIt("C:/here.pdf", "hello");
                app2.doIt("C:/here2.pdf", "helloagain");
                PDFMergerUtility merger = new PDFMergerUtility();
                merger.addSource("C:/here.pdf");
                merger.addSource("C:/here2.pdf");
                OutputStream bout2 = new BufferedOutputStream(new FileOutputStream("C:/hereisthefinal.pdf"));
    
                merger.setDestinationStream(bout2);
                merger.mergeDocuments();
    
            } catch (COSVisitorException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    
    }
    
  • 共有3个答案

    支劲
    2023-03-14

    您也可以使用这种方式:-
    1)创建InputStream列表
    2)实例化PDFMergerUtility类
    3)设置目标输出流
    4)将所有InputStreams作为需要合并的源文件添加到PDFMerger
    5)通过调用“PDFmerger.mergeDocuments();

       List<InputStream> locations=new ArrayList<InputStream>();
            locations.add(new FileInputStream("E:/Filenet Project Support/MergePDFs_Sample_Code/Attorney_new_form.pdf"));
            locations.add(new FileInputStream("E:/Filenet Project Support/MergePDFs_Sample_Code/JH.pdf"));
            locations.add(new FileInputStream("E:/Filenet Project Support/MergePDFs_Sample_Code/Interpreter_new_form.pdf"));
            //Instantiating PDFMergerUtility class
            PDFMergerUtility PDFmerger = new PDFMergerUtility();
            //Setting Destination Output Stream
            OutputStream out = new FileOutputStream("E:/Filenet Project Support/MergePDFs_Sample_Code/merged.pdf");
            //Adding all InputStreams to PDFMerger as Source files which needs to be merged.
            PDFmerger.addSources(locations);
            //Setting Destination Output Stream
            PDFmerger.setDestinationStream(out);
            //Merging the two documents
            PDFmerger.mergeDocuments();
            System.out.println("Documents merged");
    
    巫马曜文
    2023-03-14

    我使用它来合并一些文档(InputStreams),并将合并后的文档写入HttpServletResponse。

      PDFMergerUtility mergedDoc = new PDFMergerUtility();
      ByteArrayOutputStream colDocOutputstream = new ByteArrayOutputStream();
    
      for (int i = 0; i < documentCount; i++)
      {
        ByteArrayOutputStream tempZipOutstream = new ByteArrayOutputStream();
    ...
        mergedDoc.addSource(new ByteArrayInputStream(tempZipOutstream.toByteArray()));
      }
    
      mergedDoc.setDestinationStream(colDocOutputstream);
      mergedDoc.mergeDocuments();
    
      response.setContentLength(colDocOutputstream.size());
      response.setContentType("application/pdf");
      response.setHeader("Content-Disposition", "attachment; filename=mergedDocument.pdf");
      response.setHeader("Pragma", "public");
      response.setHeader("Cache-Control", "max-age=0");
      response.addDateHeader("Expires", 0);
      response.getOutputStream().write(colDocOutputstream.toByteArray());
    
    岳锦
    2023-03-14

    您只需要使用pdfmergeuty。addSource(InputStream)方法,用于从InputStream而非物理文件添加源。

    快速浏览一下API,您可以使用PDDocument.save(OutputStream)方法将文件写入内存中的字节数组,这样应该可以工作。

    static byte[] doIt(String message) {
       PDDocument doc = new PDDocument();
       // add the message
       ByteArrayOutputStream baos = new ByteArrayOutputStream();
       doc.save(baos);
       return baos.toByteArray();
    }
    
    void main(String args[]) {
       byte[] pdf1 = doIt("hello");
       byte[] pdf2 = doIt("world");
       PDFMergerUtility merger = new PDFMergerUtility();
       merger.addSource(new ByteArrayInputStream(pdf1));
       merger.addSource(new ByteArrayInputStream(pdf2));
       // do the rest with the merger
    }
    
     类似资料:
    • 我正在使用Apache PdfBox来预设几个非PDF/A表单,并使用将这些PDF合并在一起,并创建新PDF的字节数组。 是否有一种方法可以告诉创建一个不能再修改的有效PDF/A文档?

    • 主要内容:创建一个空的PDF文档,实例现在让我们了解如何使用PDFBox库创建PDF文档。 创建一个空的PDF文档 可以通过实例化类来创建一个空的PDF文档。使用这个类的方法将文档保存在所需的位置。 以下是创建一个空的PDF文档的步骤。 第1步: 创建空白文档 包中的类是PDF文档的内存中表示形式。 因此,通过实例化这个类,可以创建一个空的,如下面的代码块所示。 第2步: 保存文档 创建文档后,需要将此文档保存在所需的路径中,可以使用

    • 主要内容:合并多个PDF文档,示例在前一章中,我们已经看到如何将给定的PDF文档分成多个文档。 现在让我们学习如何将多个PDF文档合并为一个文档。 合并多个PDF文档 使用类的类将多个PDF文档合并到单个PDF文档中,该类提供了将两个或多个PDF文档合并到单个PDF文档中的方法。 以下是合并多个PDF文档的步骤。 第1步:加载现有的PDF文档 使用类的静态方法加载现有的PDF文档。 此方法接受一个文件对象作为参数,因为这是一个静态

    • 我正在迁移一些代码(最初使用iText)来使用PdfBox进行PDF合并。除了创建PDF包或文件夹,一切都很好。我不得不承认,直到现在我才意识到它的存在。 这是我的代码片段(使用iText): 我需要这个,但与PdfBox。 我正在研究两者的 API 和文档,但找不到解决方案。任何帮助都会很棒。 附言。如果我给人留下印象,我需要在iText中解决方案,我需要它在PdfBox中,因为迁移是从iTex

    • 我正在合并多个PDF与PDFBox的。 除了一个细节外,这一切都很好。在一些PDF查看器(Firefox、SumatraPDF、Chrome)中,页码显示不正确。对于exmaple,如果我合并三个文档,每个文档有三页,则生成的页码为: 而不是 受影响的查看者似乎是从PDF中的某些元数据中提取页码信息,而不是自己计算。 有没有办法用PDFBox解决这个问题?

    • 问题内容: 我需要创建一个PDF,其中将包含执行状态报告,其中状态将以表格结构显示。是否可以使用PDFBOX API生成pdf表格式? 以下是一些用于创建新PDF文档的示例代码: 问题答案: 试试这个: 只需在函数中调用此方法