itext+thyemeleaf 实现html模版生成pdf
在Java中,使用iText和Thymeleaf实现HTML模板生成PDF的基本步骤如下:
- 添加依赖库:确保在项目的
pom.xml
中包含iText和Thymeleaf的依赖。
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext7-core</artifactId>
<version>7.1.9</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.0.12.RELEASE</version>
</dependency>
- 准备HTML模板:创建一个HTML模板文件,并使用Thymeleaf语法插入动态数据。
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>PDF Example</title>
</head>
<body>
<h1 th:text="${title}"></h1>
<p th:text="${content}"></p>
</body>
</html>
- 使用iText和Thymeleaf生成PDF:编写Java代码将HTML模板渲染为PDF。
import com.itextpdf.html2pdf.HtmlConverter;
import com.itextpdf.kernel.pdf.PdfWriter;
import com.itextpdf.layout.element.IBlockElement;
import com.itextpdf.layout.element.List;
import com.itextpdf.layout.property.UnitValue;
import org.thymeleaf.TemplateEngine;
import org.thymeleaf.context.Context;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
public class HtmlToPdfConverter {
public static void convertToPdf(String htmlTemplatePath, String pdfOutputPath, Context context) throws IOException {
// 加载Thymeleaf模板引擎并设置模板上下文
TemplateEngine templateEngine = new TemplateEngine();
Reader templateReader = new FileReader(htmlTemplatePath);
String htmlContent = templateEngine.process("templateName", context);
// 使用iText HtmlConverter将HTML转换为PDF
Writer writer = new OutputStreamWriter(new FileOutputStream(pdfOutputPath), "UTF-8");
HtmlConverter.convertToPdf(htmlContent, writer);
writer.close();
}
public static void main(String[] args) throws IOException {
// 设置Thymeleaf上下文
Context context = new Context();
context.setVariable("title", "PDF Title");
context.setVariable("content", "This is a PDF generated from an HTML template.");
// 调用转换方法
convertToPdf("path/to/template.html", "path/to/output.pdf", context);
}
}
确保替换path/to/template.html
和path/to/output.pdf
为实际的文件路径,并设置合适的HTML模板路径和上下文数据。
以上代码实现了一个简单的HTML模板到PDF的转换。实际应用中可能需要更复杂的配置和错误处理。
评论已关闭