<!--pdf操作-->
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.pdf.free</artifactId>
<version>5.1.0</version>
</dependency>
/**
* 该方法只能操作三页
* @param sourcePath
* @param sendPath
* @return
*/
public static String pdfToWord(String sourcePath,String sendPath) throws Exception{
PdfDocument pdf = new PdfDocument();
pdf.loadFromFile(sourcePath);
//保存为Word格式
pdf.saveToFile(sendPath, FileFormat.DOCX);
return sendPath;
}