Java使用aopse实现word转换pdf
Posted 不允许摆烂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java使用aopse实现word转换pdf相关的知识,希望对你有一定的参考价值。
Java使用aopse实现word转换pdf
需要引用aspose包,引入操作我写了一个博客,地址如下
https://blog.csdn.net/weixin_46713508/article/details/125495770?spm=1001.2014.3001.5502
直接上代码了 这里应该用流输出,以后完善
public boolean wordConvertPdf(MultipartFile file, String outPath) throws Exception
// 验证License
if (!WordConvertUtil.getLicense())
return false;
try
// 原始word路径
Document doc = new Document(file.getInputStream());
// 输出路径
File pdfFile = new File(outPath);
// 文件输出流
FileOutputStream fileOS = new FileOutputStream(pdfFile);
doc.save(fileOS, SaveFormat.PDF);
fileOS.close();
return true;
catch (Exception e)
e.printStackTrace();
return false;
运行如下
以上是关于Java使用aopse实现word转换pdf的主要内容,如果未能解决你的问题,请参考以下文章