Thymeleaf模板引擎生成的html字符串转换成pdf

java 复制代码
依赖引入
 	 implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
     implementation("org.xhtmlrenderer:flying-saucer-pdf")

将ITemplateEngine注入到spring管理的类中,

java 复制代码
Context context = new Context();
context.setVariable("name", wasteDisposalSiteDTO.getName());
String  processHtml= iTemplateEngine.process("hazardousWaste", context);//hazardousWaste是html模板文件路径,需要在配置文件中设置//spring:thymeleaf:prefix: classpath:/templates/ 基本路径
 //下载到浏览器
     // 设置响应类型 pdf
        response.setContentType(MediaType.APPLICATION_PDF_VALUE);

        // 设置响应编码
        response.setCharacterEncoding(StandardCharsets.UTF_8.name());

        response.setHeader(HttpHeaders.CONTENT_DISPOSITION, ContentDisposition.attachment()
                .filename("1" + ".pdf", StandardCharsets.UTF_8)
                .build()
                .toString());
        // 使用ByteArrayOutputStream来捕获PDF字节流
        try (ByteArrayOutputStream os = new ByteArrayOutputStream()) {
            // 创建ITextRenderer对象
            ITextRenderer renderer = new ITextRenderer();
            ITextFontResolver fontResolver = renderer.getFontResolver();
            ClassPathResource classPathResource = new ClassPathResource("/font/simsun.ttc");//加载字体路径,避免生成的pdf加载不出来汉字。
            fontResolver.addFont(classPathResource.getPath(), BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
            renderer.setDocumentFromString(processHtml);
            renderer.layout();
            renderer.createPDF(os);

            // 将生成的PDF字节流写入到HTTP响应的输出流中
            response.getOutputStream().write(os.toByteArray());
            response.getOutputStream().flush();
        } catch (DocumentException e) {
            e.printStackTrace();
            response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "PDF generation failed");
        }
//...
相关推荐
木木黄木木4 小时前
html5炫酷图片悬停效果实现详解
前端·html·html5
ZhangChuChu_92485 小时前
Word在生成PDF后,PDF左侧导航书签目录错误显示的解决方法
pdf·word
计算机毕设定制辅导-无忧学长10 小时前
HTML 性能优化之路:学习进度与优化策略(二)
学习·性能优化·html
小旋风0123410 小时前
封装可拖动弹窗(vue jquery引入到html的版本)
vue.js·html·jquery
inxunoffice12 小时前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
前端Hardy14 小时前
HTML&CSS:超丝滑的动态导航菜单
javascript·css·html
前端Hardy14 小时前
HTML&CSS:你绝对没见过的input输入框,确定不看看吗
javascript·css·html
前端Hardy14 小时前
HTML&CSS:不一样的开关效果
javascript·css·html
人工智能教学实践15 小时前
【爬虫脚本】实现批量pdf文件下载
pdf
木木黄木木16 小时前
HTML5手写签名板项目实战教程
前端·html·html5