这是我将 html 转换为 pdf 的代码:

public boolean create (String htmlText, String absoluteFilePath) {
try {
    Document document = new Document(PageSize.LETTER);
    PdfWriter pdfWriter = PdfWriter.getInstance
            (document, new FileOutputStream(absoluteFilePath));
    document.open();

    // Fixing xhtml tag
    Tidy tidy = new Tidy(); // obtain a new Tidy instance
    tidy.setXHTML(true); // set desired config options using tidy setters
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    tidy.setCharEncoding(Configuration.UTF8);
    tidy.parse(new ByteArrayInputStream(htmlText.getBytes(), output);
    String preparedText = output.toString("UTF-8");

    Log.i("CHECKING", "JTidy Out: " + preparedText);

    InputStream inputStream = new ByteArrayInputStream(preparedText.getBytes());
    XMLWorkerHelper.getInstance().parseXHtml(pdfWriter, document,
            inputStream, null, Charset.forName("UTF-8"), new MyFont());

    document.close();
    return true;
} catch (Exception e) {
    File file = new File(absoluteFilePath);
    if(file.exists()) {
        boolean isDeleted = file.delete();
        Log.i("CHECKING", "PDF isDeleted: " + isDeleted);
    }
    LOGGER.error("Exception: " + e.getMessage());
    e.printStackTrace();
    return false;
}

}

它适用于以下 htmlText

   <p dir="ltr"><br>
wwwww<br>
--- <br>
Sent bys.</p>


<p>Original message:</p>
<blockquote>
<strong>From: </strong>
[email protected]
<br/>
<strong>Sent: </strong>
Dec 1, 2014 5:10:19 PM
<br/>
<strong>
To:
</strong>
ssss
<br/>
<strong>Subject: </strong>
test
<br/>
<br/>
<p dir="ltr">
<br>
123<br>
--- <br>
ssssssss.</p>
</blockquote>


它在以下 htmlText 中不起作用:

<p dir="ltr"><br>
123<br>
--- <br>
Sent by ss.</p>


<p>Original message:</p>
<blockquote>
<strong>From: </strong>
Navruzbek Akhmedov <[email protected]>
<br/>
<strong>Sent: </strong>
Dec 1, 2014 5:14:36 PM
<br/>
<strong>
To:
</strong>
Navruzbek Akhmedov <[email protected]>
<br/>
<strong>Subject: </strong>
test
<br/>
<br/>
<div dir="ltr">12345</div>
</blockquote>


请帮助我为什么它的工作方式不同,并且在此 document has no pages 之后为 secon htmlText tidy.parse(new ByteArrayInputStream(htmlText.getBytes("ISO-8859-1")), output); 和 outputstream 为空给出错误。提前致谢!

最佳答案

我最近解决了这个问题。问题是 html 文本中的 Navruzbek Akhmedov <[email protected]>。在我看来,iText lib 将 <[email protected]> 视为 HTML 标记。它实际上没有在 html 标签列表中,然后给出错误。就这样! :))))))))))))))))))))

关于android从html文本创建pdf文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27226092/

10-10 01:29