创建文档时出现iText异常

时间:2019-03-20 13:19:44

标签: java exception itext

我的代码:

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页。任何想法出了什么问题?

0 个答案:

没有答案