我正在读取文件内容并将其作为内容类型“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) {
}