Aspose实现word转pdf
1、Aspose实现word转pdf
github:https://github.com/aspose-words/Aspose.Words-for-Java
参考:
https://blog.csdn.net/qq_34315636/article/details/95358305
具体实现:
Maven依赖:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>19.8</version>
<classifier>jdk17</classifier>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/aspose-words-19.8-jdk17.jar</systemPath>
</dependency>
Java代码:
import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;
import lombok.extern.slf4j.Slf4j;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
/**
* word转pdf
*/
@Slf4j
public class WordToPdfUtil {
public static boolean getLicense() {
boolean result = false;
try {
InputStream is = WordToPdfUtil.class.getClassLoader().getResourceAsStream("license.xml");
License aposeLic = new License();
aposeLic.setLicense(is);
result = true;
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void wordToPdf(String docPath, String pdfPath) {
try {
// 验证License 若不验证则转化出的pdf文档会有水印产生
if (!getLicense()) {
return;
}
// String docPath = "C:\\Users \\Desktop\\原文.doc";
// String pdfPath = "D:\\原文.pdf";
long old = System.currentTimeMillis();
FileOutputStream os = new FileOutputStream(new File(pdfPath));
//inPath是要被转化的word文档
Document doc = new Document(docPath);
doc.save(os, SaveFormat.PDF);
os.close();
long now = System.currentTimeMillis();
System.out.println("Aspose转PDF共耗时:" + ((now - old) / 1000.0) + "秒");
} catch (Exception e) {
e.printStackTrace();
}
}
}
license.xml文件放在resources文件夹下
license.xml:
<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>
2、可能遇到的问题
2.1 Maven打包引用项目目录下的jar包
参考:
执行:
mvn clean
mvn package
2.2 Aspose在Linux下乱码问题解决
参考:
我的步骤:
1、
首先在 C:windows/fonts 找到windows下的字体,
在/usr/shared/fonts目录下新建一个目录xpfonts:
然后就是将上面的字体上传至/usr/shared/fonts/xpfonts目录下。
修改xpfonts目录的权限:
chmod -R 755 /usr/share/fonts/xpfonts
安装ttmkfdir来搜索目录中所有的字体信息,并汇总生成fonts.scale文件,输入命令:
yum -y install ttmkfdir
执行ttmkfdir命令:
ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir
修改字体配置文件,打开配置文件:
vi /etc/fonts/fonts.conf
可以看到一个Font list,即字体列表,在这里把添加的中文字体位置加进去:
然后输入:wq保存退出,最后刷新内存中的字体缓存,这样就不用reboot重启了:
fc-cache
最后fc-list看一下字体列表
- 点赞
- 收藏
- 关注作者
评论(0)