依赖
先安装好MAVEN
https://blog.csdn.net/m0_62214280/article/details/140643392
链接:https://pan.baidu.com/s/1jISO-TPEyLgC8RTmMJGRQw 提取码:9ju8
<dependency><groupId>com.aspose</groupId><artifactId>aspose-words</artifactId><version>15.8.0</version></dependency>
可以加入本地仓库
mvn install:install-file -DgroupId=com.aspose -DartifactId=aspose-words -Dversion=15.8.0 -Dpackaging=jar -Dfile=aspose-words-15.8.0-jdk16.jar
pdf_16">在项目静态资源路径下添加一个license.xml文件,不然生成的pdf会有水印
**<?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=</Signature>
</License>**
添加Word2PdfAsposeUtil工具类
word">import com.aspose.words.Document;
word">import com.aspose.words.License;
word">import com.aspose.words.SaveFormat;word">import java.io.File;
word">import java.io.FileOutputStream;
word">import java.io.IOException;
word">import java.io.InputStream;word">public word">class Word2PdfAsposeUtil {word">public word">static word">boolean getLicense() {word">boolean result = false;InputStream is = word">null;word">try {is = Word2PdfAsposeUtil.word">class.getClassLoader().getResourceAsStream("license.xml"); // license.xml应放在..\WebRoot\WEB-INF\classes路径下License aposeLic = word">new License();aposeLic.setLicense(is);result = true;} word">catch (Exception e) {e.printStackTrace();}word">finally {word">if (is != word">null) {word">try {is.close();} word">catch (IOException e) {e.printStackTrace();}}}word">return result;}word">public word">static word">boolean doc2pdf(String inPath, String outPath) {word">if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生word">return false;}FileOutputStream os = word">null;word">try {word">long old = System.currentTimeMillis();File file = word">new File(outPath); // 新建一个空白pdf文档os = word">new FileOutputStream(file);Document doc = word">new Document(inPath); // Address是将要被转化的word文档doc.save(os, SaveFormat.PDF);// 全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF,// EPUB, XPS, SWF 相互转换word">long now = System.currentTimeMillis();System.out.println("pdf转换成功,共耗时:" + ((now - old) / 1000.0) + "秒"); // 转化用时} word">catch (Exception e) {e.printStackTrace();word">return false;}word">finally {word">if (os != word">null) {word">try {os.flush();os.close();} word">catch (IOException e) {e.printStackTrace();}}}word">return true;}word">public word">static word">void main(String[] arg){String docPath = "E:\\歌\\2022_江岸区420102_1716896947404\\日常监督\\4_固定取水户后湖泵站每月现场勘验.docx";String pdfPath = "E:\\歌\\2022_江岸区420102_1716896947404\\日常监督\\4_固定取水户后湖泵站每月现场勘验.pdf";Word2PdfAsposeUtil.doc2pdf(docPath,pdfPath);}
}
参考 https://www.cnblogs.com/adolph2715/p/14346140.html
参考可尝试
https://www.jb51.net/program/329446dtt.htm
相关文章
https://juejin.cn/post/6990561621286486046