请看一下这个:
[..]
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 会产生下一个内存分配...