在spring boot 中使用itext和itextrender生成pdf文件
转载请注明出处 https://www.cnblogs.com/majianming/p/9539376.html
项目中需要对订单生成pdf文件,在第一版本其实已经有了比较满意的pdf文档,但是还是存在问题的,主要是itext的css支持能力实在是太差,测试过程中发现margin都不支持,和我对接pdf的html模板的伙伴也是一直在改,凭着不想一直被打的希望,终于找到了下面好一点的方案。总的来说,就是加了itextrender这个支持常见的css2.1的封装。
首选介绍一下这次使用的环境设置
- spring boot 2.0
- itext 5.5.13
- xmlworker 5.5.13
- itext-asin asian 5.2.0
- flying-saucer-pdf-itext5 9.1.12
在maven pom文件添加
<!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
<version>5.2.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.itextpdf.tool/xmlworker -->
<dependency>
<groupId>com.itextpdf.tool</groupId>
<artifactId>xmlworker</artifactId>
<version>5.5.13</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.xhtmlrenderer/flying-saucer-pdf-itext5 -->
<dependency>
<groupId>org.xhtmlrenderer</groupId>
<artifactId>flying-saucer-pdf-itext5</artifactId>
<version>9.1.12</version>
</dependency>
在代码中默认使用
ITextRenderer iTextRenderer = new ITextRenderer();
iTextRenderer.setPDFVersion(PdfWriter.VERSION_1_7);
iTextRenderer.setDocumentFromString(html);//pdf的内容,有其他生成模式,方法名类似
iTextRenderer.layout();
try (ServletOutputStream outputStream = response.getOutputStream()) {
iTextRenderer.createPDF(outputStream);
} catch (IOException e) {
logger.error("输出pdf错误" + e.getMessage(), e);
} catch (DocumentException e) {
logger.error("生成pdf错误" + e.getMessage(), e);
}
好了,启动跑一下。中文文字一个都没有显示。按照之前的想法,那设置一下字体文件路径就好了吧,下面的借鉴于itext的com.itextpdf.text.FontFactoryImp#registerDirectories(), 用于向itextRender注册默认的字体路径,
ITextRenderer iTextRenderer = new ITextRenderer();
try {
ITextFontResolver fontResolver = iTextRenderer.getFontResolver();
String windir = System.getenv("windir");
String fileSeparator = System.getProperty("file.separator");
if (windir != null && fileSeparator != null) {
fontResolver.addFontDirectory(windir + fileSeparator + "fonts", BaseFont.NOT_EMBEDDED);
}
fontResolver.addFontDirectory("/usr/share/X11/fonts", BaseFont.EMBEDDED);
fontResolver.addFontDirectory("/usr/X/lib/X11/fonts", BaseFont.EMBEDDED);
fontResolver.addFontDirectory("/usr/openwin/lib/X11/fonts", BaseFont.EMBEDDED);
fontResolver.addFontDirectory("/usr/share/fonts", BaseFont.EMBEDDED);
fontResolver.addFontDirectory("/usr/X11R6/lib/X11/fonts", BaseFont.EMBEDDED);
fontResolver.addFontDirectory("/Library/Fonts", BaseFont.EMBEDDED);
fontResolver.addFontDirectory("/System/Library/Fonts", BaseFont.EMBEDDED);
} catch (IOException e) {
logger.error("字体路径读取异常", e);
//相关处理
return;
} catch (DocumentException e) {
logger.error("字体解析异常", e);
//相关处理
return;
}
iTextRenderer.setPDFVersion(PdfWriter.VERSION_1_7);
iTextRenderer.setDocumentFromString(html);
iTextRenderer.layout();
try (ServletOutputStream outputStream = response.getOutputStream()) {
iTextRenderer.createPDF(outputStream);
} catch (IOException e) {
logger.error("输出pdf错误" + e.getMessage(), e);
} catch (DocumentException e) {
logger.error("生成pdf错误" + e.getMessage(), e);
}
开心的运行起来,哈哈哈哈,要好了!
欸?还是一样,是我的问题?肯定是我的问题!那就继续看吧
看了许多的博客(忘记记录下来了,( ̄_, ̄ ))
看到许多添加字体文件的都是类似于 fontResolver.addFont("simsun.ttc",BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
,向解析器注册宋体字体;第三个参数是字体的嵌入行为,有嵌入和不嵌入两种。那第二个参数是什么,查看命名,也就是encoding,字体的编码方式,看看ITextFontResolver#addFontDirectory(Sting path,boolean embedded)这个方法中,调用了addFont(String path, boolean embedded),在这个方法中找到了问题的根源,上面调用fontResolver.addFontDirectory
这个方法设置字体的默认编码为Cp1252,这个编码并不支持中文,也就很好的说明了为什么pdf上的中文字符都没有显示,那么我们设置为Identity-H,这个时候将上面的代码加以修改
首先修改默认的addFontDirectory方法
/**
* 因为默认设置的字体编码为西文,需要重写改为<code>BaseFont.IDENTITY_H</code>
*
* @param dir
* @param embedded
* @param fontResolver
* @throws DocumentException
* @throws IOException
*/
private void addFontDirectory(String dir, boolean embedded, ITextFontResolver fontResolver)
throws DocumentException, IOException {
File f = new File(dir);
if (f.isDirectory()) {
File[] files = f.listFiles((dir1, name) -> {
String lower = name.toLowerCase();
return lower.endsWith(".otf") || lower.endsWith(".ttf") || lower.endsWith(".ttc");
});
for (int i = 0; i < files.length; i++) {
fontResolver.addFont(files[i].getAbsolutePath(), BaseFont.IDENTITY_H, embedded);
}
}
}
所以生成的代码改为
ITextRenderer iTextRenderer = new ITextRenderer();
try {
ITextFontResolver fontResolver = iTextRenderer.getFontResolver();
String windir = System.getenv("windir");
String fileSeparator = System.getProperty("file.separator");
if (windir != null && fileSeparator != null) {
addFontDirectory(windir + fileSeparator + "fonts", BaseFont.NOT_EMBEDDED, fontResolver);
}
addFontDirectory("/usr/share/X11/fonts", BaseFont.EMBEDDED, fontResolver);
addFontDirectory("/usr/X/lib/X11/fonts", BaseFont.EMBEDDED, fontResolver);
addFontDirectory("/usr/openwin/lib/X11/fonts", BaseFont.EMBEDDED, fontResolver);
addFontDirectory("/usr/share/fonts", BaseFont.EMBEDDED, fontResolver);
addFontDirectory("/usr/X11R6/lib/X11/fonts", BaseFont.EMBEDDED, fontResolver);
addFontDirectory("/Library/Fonts", BaseFont.EMBEDDED, fontResolver);
addFontDirectory("/System/Library/Fonts", BaseFont.EMBEDDED, fontResolver);
} catch (IOException e) {
logger.error("字体路径读取异常", e);
//相关处理
return;
} catch (DocumentException e) {
logger.error("字体解析异常", e);
//相关处理
return;
}
iTextRenderer.setPDFVersion(PdfWriter.VERSION_1_7);
iTextRenderer.setDocumentFromString(html);
iTextRenderer.layout();
try (ServletOutputStream outputStream = response.getOutputStream()) {
iTextRenderer.createPDF(outputStream);
} catch (IOException e) {
logger.error("输出pdf错误" + e.getMessage(), e);
} catch (DocumentException e) {
logger.error("生成pdf错误" + e.getMessage(), e);
}
运行,ok了
转载请注明出处 https://www.cnblogs.com/majianming/p/9539376.html
在spring boot 中使用itext和itextrender生成pdf文件的更多相关文章
- wkhtmltopdf+itext实现html生成pdf文件的打印下载(适用于linux及windows)
目中遇到个根据html转Java的功能,在java中我们itext可以快速的实现pdf打印下载的功能,在itext中我们一般有以下三中方式实现 配置pdf模板,通过Adobe Acrobat 来设置域 ...
- spring boot 中使用swagger 来自动生成接口文档
1.依赖包 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swa ...
- spring boot中利用mybatis-generator插件生成代码
使用Idea在spring boot中集成mybatis-generator,自动生成mapper.xml model dao 文件 一.配置 pom.xml 在pom.xml的<plugi ...
- spring boot(三):Spring Boot中Redis的使用
spring boot对常用的数据库支持外,对nosql 数据库也进行了封装自动化. redis介绍 Redis是目前业界使用最广泛的内存数据存储.相比memcached,Redis支持更丰富的数据结 ...
- Spring Boot中的事务管理
原文 http://blog.didispace.com/springboottransactional/ 什么是事务? 我们在开发企业应用时,对于业务人员的一个操作实际是对数据读写的多步操作的结合 ...
- Spring Boot中的注解
文章来源:http://www.tuicool.com/articles/bQnMra 在Spring Boot中几乎可以完全弃用xml配置文件,本文的主题是分析常用的注解. Spring最开始是为了 ...
- 在Spring Boot中使用Https
本文介绍如何在Spring Boot中,使用Https提供服务,并将Http请求自动重定向到Https. Https证书 巧妇难为无米之炊,开始的开始,要先取得Https证书.你可以向证书机构申请证书 ...
- Spring Boot中使用Swagger2构建强大的RESTful API文档
由于Spring Boot能够快速开发.便捷部署等特性,相信有很大一部分Spring Boot的用户会用来构建RESTful API.而我们构建RESTful API的目的通常都是由于多终端的原因,这 ...
- Dubbo在Spring和Spring Boot中的使用
一.在Spring中使用Dubbo 1.Maven依赖 <dependency> <groupId>com.alibaba</groupId> <artifa ...
随机推荐
- Linux - Ubuntu中文输入法安装(Ubuntu 12.04)
Ubuntu中文输入法安装(Ubuntu 12.04) 本文地址:http://blog.csdn.net/caroline_wendy Ubuntu作为Linux常见的操作系统,是须要熟练使用的. ...
- VMware 虚拟机添加硬盘以及为新添加的硬盘创建Samba共享 (转)
一.为VMware虚拟机添加硬盘 1. 首先在VMware虚拟机的VM->Setting子菜单中为虚拟机添加一块15G大小的SCSI类型的硬盘(注意:如果原来为IDE硬盘,SCSI类型的硬盘可能 ...
- Redis入门教程(二)— 基本数据类型
阅读以下内容时,手边打开一个redis-cli一起输入,输入命令敲击回车键前在心中想好你的答案,如果结果不合你的预期,请分析原因,使极大地提高学习效率.如果没有条件,每个数据类型后有代码运行结果,供你 ...
- 搭建gitserver
1.下载gitosis代码出错 git clone git://eagain.net/gitosis.git Initialized empty Git repository in /tmp/gito ...
- javaScript定义函数的三种方式&变量的作用域
一.函数定义 方式1.普通方式定义函数 function 函数名(參数n){ 函数体 } function add(a,b){ return a+b; } 方式2.直接量定义函数 var 函数名=fu ...
- 转载 Url编码
http://www.cnblogs.com/artwl/archive/2012/03/07/2382848.html 混乱的URI编码 JavaScript中编码有三种方法:escape.enco ...
- bzoj 1504 郁闷的出纳员
题目大意: 有一些员工 他们有工资 当他们的工资低于一个值时 他们会永远离开 I命令 I_k 新建一个工资档案,初始工资为k. 如果某员工的初始工资低于工资下界,他将立 ...
- ie7 总结
1 ie7 对部分属性选择器严重区分大小写 在HTML中,属性名,例如id, title之类是不区分大小写的,CSS中的选择器也应该是如此.但是IE7对属性名是严格区分大小写的! 2 关于属性选择器, ...
- Ubuntu midi 播放
One of the simplest methods to play a midi file in Ubuntu is to install timidity. sudo apt-get insta ...
- STM32F4 DMA2D_M2M_PFC
此例程为STM324x9I_EVAL:DCMI_CaptureMode,使用的stm32f4xx_hal_driver, At each camera line event, the line is ...