Java实现word转pdf
1.依赖引⼊
word转pdf需要com.aspose包,由于这个包不是在阿⾥云仓库公开的,我们不能直接通过maven下载,我们需要⼿动进⾏下载安装
可以从如下⽹盘进⾏下载该jar包
依赖下载下来后,我们需要⼿动进⾏依赖的安装,⾸先确保maven环境变量已配置好
1)配置MAVEN_HOME。在系统变量中新建,变量名MAVEN_HOME,变量值,maven⽂件夹路径;
2)配置path,到path系统变量,点开,新建,输⼊%MAVEN_HOME%\bin
安装依赖
将依赖移动到D盘下,然后cmd切换到D盘⽬录,执⾏如下指令即可完成安装,
mvn install:install-file -DgroupId=com.aspose -DartifactId=aspose-words -Dversion=15.8.0 -Dpackaging=jar -Dfile=aspose-words-15.8.0-jdk16.jar
最后在l中将依赖进⾏引⼊即可
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>15.8.0</version>
</dependency>
2.添加配置⽂件
在resource⽬录下添加,l配置⽂件
<?xml version="1.0" encoding="UTF-8" ?>
<License>
<Data>
<Products>
<Product>Aspose.Total for Java</Product>
<Product>Aspose.Words for Java</Product>
</Products>
<EditionType>Enterprise</EditionType>
<SubscriptionExpiry>20991231</SubscriptionExpiry>
<LicenseExpiry>20991231</LicenseExpiry>
<SerialNumber>8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7</SerialNumber>
</Data>
<Signature>sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=</Signatur </License>
3.编写⼯具类实现转换
package com.ller;
import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;
import io.ClassPathResource;
import io.Resource;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
public class Word2PdfAsposeUtil {
public static boolean getLicense() {
boolean result = false;
InputStream is = null;
try {
Resource resource = new ClassPathResource("l");
is = InputStream();
License aposeLic = new License();
aposeLic.setLicense(is);
result = true;
} catch (Exception e) {
e.printStackTrace();
}finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return result;
}
public static boolean doc2pdf(String inPath, String outPath) {
if (!getLicense()) { // 验证License 若不验证则转化出的pdf⽂档会有⽔印产⽣
return false;
}
FileOutputStream os = null;
try {
long old = System.currentTimeMillis();
File file = new File(outPath); // 新建⼀个空⽩pdf⽂档
os = new FileOutputStream(file);
Document doc = new Document(inPath); // Address是将要被转化的word⽂档
doc.save(os, SaveFormat.PDF);// 全⾯⽀持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF,
/
/ EPUB, XPS, SWF 相互转换
long now = System.currentTimeMillis();
System.out.println("pdf转换成功,共耗时:" + ((now - old) / 1000.0) + "秒"); // 转化⽤时
} catch (Exception e) {
e.printStackTrace();
return false;
}finally {
if (os != null) {
try {
os.flush();
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
如何配置maven环境变量
return true;
}
public static void main(String[] arg){
String docPath = "C:\\Users\\DELL\\Desktop\\接⼝⽂档\\骑⾏信息数据说明.doc";
String pdfPath = "C:\\Users\\DELL\\Desktop\\接⼝⽂档\\骑⾏信息数据说明.pdf";
Word2PdfAsposeUtil.doc2pdf(docPath,pdfPath);
}
}
4.测试执⾏main⽅法即可实现转换成功