写在前面
以下路径问题根据项目结构自己修改,以下是我使用spring boot打成jar包的写法。
一、需求背景
在前端编辑器中输入任意的文本,包括css样式变化,保存为html文本。通过Java后台将html文本转换为PDF文档并加上页眉、页脚、水印等。因为网上开源的方案用的工具版本都比较老,也无法满足要求。所以只能用目前比较新的Itext7,网上的资料不多,只能看文档自己学习。
二、解决方案
1.开发工具Itext7 (https://itextpdf.com/itext7): 首先jar包一定要引对,要不Demo也运行不了。我项目使用的是maven,以下是pom.xml最新版jar可以通过官方文档中寻找。
com.itextpdf
html2pdf
1.0.2
com.itextpdf
itext7-core
7.0.5
pom
itext7-core包含了9个jar包,直接都导入就好
2.最简单的HTML转PDF(包含中文字体、粗体、表格等基本,不支持PDF的页眉、页脚、页边距、水印等)方法的参数和返回值可以灵活变通
public class Html2PdfUtil {
public static void main(String[] args) throws Exception {
String html = "
微软雅黑: 粗体前AA粗体AA粗体后
\n" +"
宋体: 粗体前AA粗体AA粗体后
\n" +"
黑体: 粗体前AA粗体AA粗体后
" +"
Times New Roman: pre bdAAbdAAaft bd
\n";FileOutputStream fileOutputStream = new FileOutputStream("D:/Test/a.pdf");
fileOutputStream.write(convert(html));
fileOutputStream.close();
}
public static byte[] convert(String html) throws IOException {
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
ConverterProperties props = new ConverterProperties();
FontProvider fp = new FontProvider(); // 提供解析用的字体
fp.addStandardPdfFonts(); // 添加标准字体库、无中文
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
fp.addDirectory(classLoader.getResource("fonts").getPath()); // 自定义字体路径、解决中文,可先用绝对路径测试。
props.setFontProvider(fp);
// props.setBaseUri(baseResource); // 设置html资源的相对路径
HtmlConverter.convertToPdf(html, outputStream, props); // 无法灵活设置页边距等
byte[] result = outputStream.toByteArray();
outputStream.close();
return result;
}
}
这段代码添加了中文字体库,否则中文无法显示。设置了解析html时资源的相对路径。还有就是如果html编辑器有加粗样式类的需求时&