java pdf 富文本_Java生成pdf,兼富文本

本文介绍了如何使用Java结合FreeMarker、Jsoup和Flying Saucer库来生成包含富文本的PDF文件。首先,用FreeMarker处理模板文件,替换占位符,然后使用Jsoup对HTML进行格式化,最后通过Flying Saucer将HTML转换为PDF。由于Faling Saucer对CSS支持不全,可能出现中文换行问题,需要在转换时特别处理。此外,还讨论了如何处理中文显示和加载字体文件的方法。
摘要由CSDN通过智能技术生成

Java生成pdf,兼容富文本内容

使用技术,freemark + jsoup + flying saucer

使用freemark替换模板文件中指定的占位符,生成一个完整的的html字符串,

使用jsoup对html进行格式化,

使用flying saucer 将整个html进行pdf转换(flying saucer对css的支持不是很完整,存在连续中文换行问题,需要在转换的时候特殊处理)

maven地址

org.freemarker

freemarker

2.3.23

org.jsoup

jsoup

1.10.2

org.xhtmlrenderer

flying-saucer-pdf

9.0.8

org.xhtmlrenderer

flying-saucer-pdf-itext5

9.1.5

模板文件生成先将wrod的格式内容定义好,如果需要插入参数的地方以${xxx}为表示,例:${product}

模板例子:

41542833f34baf26fa72fe232169b0bd.png

2. 将word文档另存为 “筛选过的网页(*.htm;*.html)” 的文件,打开该文件检查每个变量(${product})是否完整,有可能在${}中出现其他代码,需要删除。

3. 检查文件没问题之后,将文件改成后缀为ftl的文件,引入到项目中,和生成的word的模板文件不同,html模板不需要引入图片字段占位符,html可以直接通过img标签展示图片

2. 获取模板文件,生成html

freemark获取模板

下面这种方式能获取模板,但是在项目打包之后无法获取jar包内的文件

Configuration configuration=newConfiguration(Configuration.getVersion());

configuration.setDefaultEncoding(StandardCharsets.UTF_8.toString());

configuration.setDirectoryForTemplateLoading(newFile(templatePath));

Template template=configuration.getTemplate("xxx.ftl");

通过流的形式直接创建模板对象

Configuration configuration=newConfiguration(Configuration.getVersion());

configuration.setDefaultEncoding(StandardCharsets.UTF_8.toString());

configuration.setDirectoryForTemplateLoading(newFile(templatePath));

InputStream inputStream=newFileInputStream(newFile(templatePath+"/"+templateName));

InputStreamReader inputStreamReader=newInputStreamReader(inputStream,StandardCharsets.UTF_8);

Template template=newTemplate("xxx.ftl",inputStreamReader,configuration);

通过template替换ftl中的占位符,再将结果写入字符流中,返回结果字符串

dataMap为Map格式,占位符为key,结果值为value

StringWriter stringWriter 

你可以使用JavaiText 库来实现富文本生成PDF并进行下载。以下是一个简单的示例代码: ```java import com.itextpdf.text.Document; import com.itextpdf.text.DocumentException; import com.itextpdf.text.Paragraph; import com.itextpdf.text.Font; import com.itextpdf.text.pdf.BaseFont; import com.itextpdf.text.pdf.PdfWriter; import java.io.FileOutputStream; import java.io.IOException; public class RichTextToPdf { public static void main(String[] args) { String richText = "<h1>标题</h1><p>这是一个示例富文本。</p><ul><li>列表项1</li><li>列表项2</li></ul>"; Document document = new Document(); try { PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("output.pdf")); document.open(); // 设置字体 BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED); Font font = new Font(bfChinese, 12, Font.NORMAL); // 添加富文本内容到PDF Paragraph paragraph = new Paragraph(); paragraph.setFont(font); paragraph.setLeading(20); paragraph.setMultipliedLeading(1); paragraph.setIndentationLeft(20); paragraph.setIndentationRight(20); paragraph.setFirstLineIndent(-20); paragraph.add(richText); document.add(paragraph); document.close(); writer.close(); System.out.println("PDF生成成功!"); } catch (DocumentException | IOException e) { e.printStackTrace(); } } } ``` 上述代码会生成一个名为 `output.pdf` 的PDF文件,其中包含了示例的富文本内容。你可以根据需要修改字体、样式、布局等参数来适应你的具体需求。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值