我的代码:
public byte[] render(@NotBlank String html) {
try(ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream()) {
iTextRenderer.setDocumentFromString(html);
iTextRenderer.layout();
iTextRenderer.createPDF(byteArrayOutputStream);
byteArrayOutputStream.flush();
return byteArrayOutputStream.toByteArray();
} catch (IOException ioe) {
(...)
}
该案例正在获取异常“请求了第2页,但是文档只有1页。”每次html字符串内容小于1页。任何想法出了什么问题?