java ItextPDF迁移到pdfbox

zf2sa74q  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(209)

我有下面的代码,我从itextpdf迁移到pdfbox。

  1. @RequestMapping(value = "/displaypdf.action", method = RequestMethod.GET)
  2. public void displaypdf(HttpServletRequest p_objRequest, HttpServletResponse p_objResponse,
  3. @RequestParam("filename") String p_sFilename) throws Exception {
  4. if (LOGGER.isDebugEnabled()) {
  5. LOGGER.debug(ClmSrDebugConstant.DISPLAYPDF);
  6. }
  7. String l_sReportName;
  8. Blob l_bContent = null;
  9. String l_sTcn = (String) p_objRequest.getSession().getAttribute(ClmSrConstant.TCN);
  10. ServletOutputStream l_objServletOutputStream = p_objResponse.getOutputStream();
  11. Map<String, Object> l_mapConfigFile = new HashMap<String, Object>();
  12. //PDDocument doc = null;
  13. Document document = null;
  14. try {
  15. l_mapConfigFile = m_objClinicalService.retrieveMap(l_sTcn);
  16. Iterator<String> it = l_mapConfigFile.keySet().iterator();
  17. while (it.hasNext()) {
  18. String key = it.next();
  19. if (key.contains(p_sFilename)) {
  20. l_bContent = (Blob) l_mapConfigFile.get(key);
  21. }
  22. }
  23. l_sReportName = p_sFilename;
  24. if (l_bContent != null) {
  25. //doc = new PDDocument();
  26. //PDPage firstpage = new PDPage();
  27. //doc.addPage(firstpage);
  28. document = new Document(PageSize.A4);
  29. PdfWriter writer = PdfWriter.getInstance(document, l_objServletOutputStream);
  30. document.open();
  31. document.addTitle(l_sReportName);
  32. p_objResponse.setContentType("application/pdf");
  33. byte[] l_bytes = l_bContent.getBytes(1, (int) l_bContent.length());
  34. InputStream l_inptStrm = l_bContent.getBinaryStream();
  35. PdfReader l_pdfReader = new PdfReader(l_inptStrm, l_bytes);
  36. PdfContentByte l_cb = writer.getDirectContent(); // Holds the PDF
  37. PdfImportedPage l_page;
  38. int l_currentPageNumber = 0;
  39. int l_pageOfCurrentReaderPDF = 0;
  40. while (l_pageOfCurrentReaderPDF < l_pdfReader.getNumberOfPages()) {
  41. if (l_pageOfCurrentReaderPDF > 0) {
  42. document.newPage();
  43. }
  44. l_pageOfCurrentReaderPDF++;
  45. l_currentPageNumber++;
  46. l_page = writer.getImportedPage(l_pdfReader, l_pageOfCurrentReaderPDF);
  47. l_cb.addTemplate(l_page, 0, 0);
  48. }
  49. writer.freeReader(l_pdfReader);
  50. } else {
  51. p_objResponse.setContentType(ClmSrConstant.TXT_CNTN_TYP);
  52. p_objResponse.getOutputStream().print(ClmSrConstant.NLP_REPORT_ERROR);
  53. }
  54. l_objServletOutputStream.flush();
  55. if (document != null) {
  56. document.close();
  57. }
  58. l_objServletOutputStream.close();
  59. } catch (Exception exExp) {
  60. if (LOGGER.isDebugEnabled()) {
  61. LOGGER.error(ClmSrDebugConstant.EXCEP_DISPLAYPDF, exExp);
  62. }
  63. }
  64. }

字符串
我不明白我怎么能转换这条线
PdfWriter writer = PdfWriter.getInstance(document,l_objServletOutputStream); PdfReader l_pdfReader = new PdfReader(l_inttStrm,l_bytes); PdfContentByte l_cb = writer.getDirectContent(); //保存PDF
进一步转化。
请发现我现在正在使用pdfbox --但无法在PDFBOX中找到PDFwriter和PDFReader

b5lpy0ml

b5lpy0ml1#

PDFbox和itextpdf都使用不同的方法,itextpdf跳过html部分,你首先要看看itextpdf会生成什么,在html中重新创建相同的内容,然后将其输入到html-to-pdf转换器中。
我们可以使用openhtmltopdf-pdfbox和flying-saucer-pdf-openpdf.

相关问题