pom.xml
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.1</version>
</dependency>
java
private static void newPdf(java.util.List<Map<String, Object>> list) {
//新建 pdf 文档
//设置页面大小
Document document = new Document(PageSize.A4.rotate());//A4横向打印
try {
//字体
BaseFont bfHeiti = null;
BaseFont bfSongti = null;
try {
//字体文件从 windows 系统 C:\\Windows\\Fonts 拷贝到项目路径
bfHeiti = BaseFont.createFont("simhei.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);//黑体字体
bfSongti = BaseFont