如何减少html转pdf时的内存消耗?

问题描述 投票:0回答:1

请看一下这个:

[..]
String xhtml = convertToXhtml(htmlContent); // memory allocation #1

iTextRenderer.setDocumentFromString(xhtml);// memory allocation #2
iTextRenderer.layout();

ByteArrayOutputStream buffer = new ByteArrayOutputStream();
iTextRenderer.createPDF(buffer); // memory allocation #3

byte[] encoded     = Base64.getEncoder().encode(buffer.toByteArray()); // memory allocation #4
String pdfAsBase64 = new String(encoded, StandardCharsets.UTF_8); // memory allocation #5

return pdfAsBase64;

我想减少内存消耗。前 3 个分配可能无法避免,但最后一个(创建 Base64 字符串)应该优化。

我尝试过使用

OutputStream buffer = Base64.getEncoder().wrap(new ByteArrayOutputStream());

但是将 OutputStream 转换为 String 会产生下一个内存分配...

java memory-management outputstream
1个回答
0
投票

你描述的部分其实很简单:

Base64.getEncoder().encodeToString(buffer.toByteArray())

此功能由 Base64.Encoder 提供

© www.soinside.com 2019 - 2024. All rights reserved.