毕业材料整理的时候要合并pdf文档,把一些文档按页码拆分出来,我本来想用wps弄的,但是它要vip,就这?就vip?哼,身为一个计算机毕业的,这种小事与其再去网上找别的软件解决,不如自己代码解决。(其实也是用的人家写好的代码)
下载itextpdf.jar包
百度云链接:https://pan.baidu.com/s/1DJyi2HXEqTD2etqpHZFz_A
提取码:wrwx
其中包括两个jar包。
新建java项目
在eclipse中新建一个java项目,把包导入到项目中,具体步骤参考:Eclipse中导入jar包
详细代码
包括两部分,一部分是按照页码提取pdf,一部分是合并pdf。
splitPDF是抽取页面,包括四个参数:需要抽的原文件路径,抽取输出文件路径,抽取开始页码,抽取结束页码。
mergePdfFiles是合并页面,包括两个参数:需要合并的文件路径(可以有多个pdf文件),合并后输出文件的路径
package pdf;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import com.itextpdf.*;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.pdf.PdfCopy;
import com.itextpdf.text.pdf.PdfImportedPage;
import com.itextpdf.text.pdf.PdfReader;
public class fenye {
public static void main(String args[]) throws IOException, DocumentException{
try {
//抽取页面
splitPDF("D:\\桌面\\翻译任务\\IEC-61158-2-2003.pdf", "D:\\桌面\\翻译任务\\output1.pdf",
231,243);
splitPDF("D:\\桌面\\翻译任务\\IEC-61158-2-2003.pdf", "D:\\桌面\\翻译任务\\output2.pdf",
260,261);
//合并页面
String[] files = {"C:\\Users\\Administrator\\Desktop\\毕业设计.pdf", "C:\\Users\\Administrator\\Desktop\\毕业论文中期检查表.pdf"};
String savepath = "C:\\Users\\Administrator\\Desktop\\K.pdf";
mergePdfFiles(Arrays.asList(files), savepath);
}
catch(Exception e) {
e.printStackTrace();
}
}
/**
* 合并原pdf为新文件
*
* @param files pdf绝对路径集
* @param newfile 新pdf绝对路径
* @return
* @throws IOException
* @throws DocumentException
*/
public static void mergePdfFiles(List<String> files, String newfile) throws IOException, DocumentException {
Document document = new Document(new PdfReader(files.get(0)).getPageSize(1));
PdfCopy copy = new PdfCopy(document, new FileOutputStream(newfile));
document.open();
for (int i = 0; i < files.size(); i++) {
PdfReader reader = new PdfReader(files.get(i));
int n = reader.getNumberOfPages();
for (int j = 1; j <= n; j++) {
document.newPage();
PdfImportedPage page = copy.getImportedPage(reader, j);
copy.addPage(page);
}
}
document.close();
}
public static void splitPDF(String bytes, String newFile, int start, int end) {
Document document = null;
PdfCopy copy = null;
try {
PdfReader reader = new PdfReader(bytes);
//获取pdf页数
int n = reader.getNumberOfPages();
if (end == 0) {
end = n;
}
document = new Document(reader.getPageSize(1));
copy = new PdfCopy(document, new FileOutputStream(newFile));
document.open();
for (int j = start; j <= end; j++) {
document.newPage();
PdfImportedPage page = copy.getImportedPage(reader, j);
copy.addPage(page);
}
document.close();
} catch (Exception e) {
e.printStackTrace();
System.err.println("split pdf file error:" + e.getMessage());
}
}
}