0

我正在读取文件内容并将其作为内容类型“PDF”发送到浏览器,PDf 中的数据未识别换行符。

我正在使用 Itext jar 并使用 HTMLWorker 格式化 HTML。

任何人都可以提供帮助或任何源代码吗?

到目前为止我的代码:

Document document = new Document(PageSize.LETTER);
response.setContentType("application/pdf");
try {
    PdfWriter.getInstance(document, response.getOutputStream());
    document.open();
    String cnt = SAMPLEJAVA.getFileContent("D:/abc.docx");
    System.out.println(cnt);
    HTMLWorker htmlWorker = new HTMLWorker(document);
    String str = "<html><body><pre>" + cnt + "</pre></body></html>";
    htmlWorker.parse(new StringReader(str));
    document.close();
    System.out.println("Done");
} catch(Exception ex)  {
}
4

1 回答 1

0

尝试替换这行代码:

String str = "<html><body><pre>" + cnt + "</pre></body></html>";

有了这个:

String str = "<html><body><pre>" + cnt.replace("\n", "&#xD;") + "</pre></body></html>";
于 2013-07-19T05:54:45.443 回答