按顺序合并多个pdf

时间:2018-09-06 12:41:15

标签: java pdf itext


嘿,很抱歉,您发布的帖子过长,语言不好,如果有不必要的细节,
我使用excel文档从一个pdf模板创建了多个1page pdf
我现在有
这样的东西
tempfile0.pdf
tempfile1.pdf
tempfile2.pdf
...
im尝试使用itext5将所有文件合并为一个pdf
但是它发现结果pdf中的页面与我想要的顺序不符 每个例子
tempfile0.pdf在第一页
tempfile1。 int 2000页
这是我正在使用的代码。
我使用的程序是:
1从哈希图中填充
2将填写的表单另存为一个pdf
3将所有文件合并为一个pdf

public void fillPdfitext(int debut,int fin) throws IOException, DocumentException {


    for (int i =debut; i < fin; i++) {
        HashMap<String, String> currentData = dataextracted[i];
        // textArea.appendText("\n"+pdfoutputname +" en cours de preparation\n ");
        PdfReader reader = new PdfReader(this.sourcePdfTemplateFile.toURI().getPath());
        String outputfolder = this.destinationOutputFolder.toURI().getPath();
        PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(outputfolder+"\\"+"tempcontrat"+debut+"-" +i+ "_.pdf"));
        // get the document catalog
        AcroFields acroForm = stamper.getAcroFields();
        // as there might not be an AcroForm entry a null check is necessary
        if (acroForm != null) {
            for (String key : currentData.keySet()) {
                try {

                    String fieldvalue=currentData.get(key);
                    if (key=="ADRESSE1"){
                        fieldvalue = currentData.get("ADRESSE1")+" "+currentData.get("ADRESSE2") ;
                        acroForm.setField("ADRESSE", fieldvalue);
                    }
                    if (key == "IMEI"){

                        acroForm.setField("NUM_SERIE_PACK", fieldvalue);

                    }
                    acroForm.setField(key, fieldvalue);
                    // textArea.appendText(key + ": "+fieldvalue+"\t\t");
                } catch (Exception e) {
                    // e.printStackTrace();
                }
            }
            stamper.setFormFlattening(true);
        }
        stamper.close();
    }

}

这是合并代码

 public void Merge() throws IOException, DocumentException
{
     File[] documentPaths = Main.objetapp.destinationOutputFolder.listFiles((dir, name) -> name.matches( "tempcontrat.*\\.pdf" ));
    Arrays.sort(documentPaths, NameFileComparator.NAME_INSENSITIVE_COMPARATOR);

    byte[] mergedDocument;

    try (ByteArrayOutputStream memoryStream = new ByteArrayOutputStream())
    {
        Document document = new Document();
        PdfSmartCopy pdfSmartCopy = new PdfSmartCopy(document, memoryStream);
        document.open();

        for (File docPath : documentPaths)
        {
            PdfReader reader = new PdfReader(docPath.toURI().getPath());
            try
            {
                reader.consolidateNamedDestinations();

                    PdfImportedPage pdfImportedPage = pdfSmartCopy.getImportedPage(reader, 1);
                    pdfSmartCopy.addPage(pdfImportedPage);

            }
            finally
            {
                pdfSmartCopy.freeReader(reader);
                reader.close();
            }
        }

        document.close();
        mergedDocument = memoryStream.toByteArray();
    }



    FileOutputStream stream = new FileOutputStream(this.destinationOutputFolder.toURI().getPath()+"\\"+
            this.sourceDataFile.getName().replaceFirst("[.][^.]+$", "")+".pdf");
    try {
        stream.write(mergedDocument);
    } finally {
        stream.close();
    }

    documentPaths=null;
    Runtime r = Runtime.getRuntime();
    r.gc();
}

我的问题是如何在生成的pdf文件中保持文件顺序不变

1 个答案:

答案 0 :(得分:2)

这是因为文件命名。您的密码 new FileOutputStream(outputfolder + "\\" + "tempcontrat" + debut + "-" + i + "_.pdf") 将产生:

  • tempcontrat0-0_.pdf
  • tempcontrat0-1_.pdf
  • ...
  • tempcontrat0-10_.pdf
  • tempcontrat0-11_.pdf
  • ...
  • tempcontrat0-1000_.pdf

tempcontrat0-11_.pdf 之前,将 tempcontrat0-1000_.pdf 放在何处,因为在合并之前按字母顺序对其进行了排序。

最好使用0org.apache.commons.lang.StringUtils的{​​{3}}方法用java.text.DecimalFormat字符保留填充文件编号,并使其类似于 tempcontrat0-000000。 pdf tempcontrat0-000001.pdf ,... tempcontrat0-9999999.pdf


您还可以更简单地完成此操作,并在填写表格后跳过写入文件的步骤,然后从文件步骤读取并合并文档,这样会更快。但这取决于您要合并的文件数量和大小,以及您拥有的内存量。

因此,您可以将已填充的文档保存到ByteArrayOutputStream中,然后在stamper.close()中为该流中的字节创建新的PdfReader并为该读取器调用pdfSmartCopy.getImportedPage()。简而言之,它看起来像:

// initialize

PdfSmartCopy pdfSmartCopy = new PdfSmartCopy(document, memoryStream);
for (int i = debut; i < fin; i++) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();

    // fill in the form here

    stamper.close();    
    PdfReader reader = new PdfReader(out.toByteArray());
    reader.consolidateNamedDestinations();
    PdfImportedPage pdfImportedPage = pdfSmartCopy.getImportedPage(reader, 1);
    pdfSmartCopy.addPage(pdfImportedPage);

    // other actions ...
}