0

良い一日、

HTMLをPDFに変換するためにitextを使用しています。しかし、起動がXMLWorkerHelper.getInstance().parseXHtml(writer, document, is);遅くなり、JVisualVM をチェックすると、メモリ リークが発生しているようです。

これが私のコードです:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Document document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document, baos);        
    document.open();
    InputStream is = new ByteArrayInputStream(content.getBytes());
    XMLWorkerHelper.getInstance().parseXHtml(writer, document, is);

    document.close();
    return baos.toByteArray();

Tomcatサーバーで実行されています。

htmlコードは次のとおりです。

<!--?xml version="1.0" encoding="UTF-8"?-->
<html>
 <head> 
    <title>Title</title>
    
   
 </head> 
    
<body>  
  
      
EXAMPLE

</body>
</html>

前もって感謝します。

4

1 に答える 1

0

Maven プロジェクトの場合: 次の依存関係をプロジェクトの pom.xml ファイルに追加します。

    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.14</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
    <dependency>
        <groupId>com.itextpdf</groupId>
        <artifactId>itextpdf</artifactId>
        <version>5.5.8</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/com.itextpdf.tool/xmlworker -->
    <dependency>
        <groupId>com.itextpdf.tool</groupId>
        <artifactId>xmlworker</artifactId>
        <version>5.5.8</version>
    </dependency>

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;

    import org.apache.poi.util.IOUtils;

    import com.itextpdf.text.Document;
    import com.itextpdf.text.DocumentException;
    import com.itextpdf.text.pdf.PdfWriter;
    import com.itextpdf.tool.xml.XMLWorkerHelper;

    public class HtmlToPdf {
        public static void main(String[] args) throws DocumentException, IOException {
            File htmlFile = new File(args[0]);
            String pdfFileName = "test.pdf";
            Document document = new Document();
            PdfWriter writer = null;
            InputStream is = null;
            OutputStream out = null;
            if (htmlFile.exists()) {
                try {
                    is = new FileInputStream(htmlFile);
                    out = new FileOutputStream(pdfFileName);
                    writer = PdfWriter.getInstance(document, out);
                    document.open();
                    XMLWorkerHelper.getInstance().parseXHtml(writer, document, is);             
                    System.out.println("PDF Created!");
                } finally {

                    // close the document before before input stream (is) and writer closure                
                    if(document != null && document.isOpen()) {
                        document.close();
                    }

                    // no harm in closing writer here
                    if(writer != null) {
                        writer.close();
                    }
                    IOUtils.closeQuietly(out);
                    IOUtils.closeQuietly(is);
                }
            }
        }
    }
于 2016-08-17T09:20:42.317 に答える