1 配置pom文件
我用的是5.4.3的版本
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.4.3</version>
</dependency>
2 合并PDF代码
/**
* @author Reverse_XML
* 将多个PDF合并成一个PDF
* @param files 源PDF路径
* @param outputPath 合并后输出的PDF路径
* @param outputFileName 合并后输出的PDF文件名
*/
public static void mergePDF(String[] files, String outputPath, String outputFileName) {
String sep = java.io.File.separator;
Document document = null;
PdfCopy copy = null;
PdfReader reader = null;
try {
document = new Document(new PdfReader(files[0]).getPageSize