Aspose Cells Excel模板转PDF Linux中文乱码解决
Posted 征服.刘华强
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Aspose Cells Excel模板转PDF Linux中文乱码解决相关的知识,希望对你有一定的参考价值。
版本20.11
Copying Fonts from a Windows Machine An easy and quick way to get TrueType fonts on a Linux system is to copy .TTF and .TTC files from the C:\\Windows\\Fonts directory on a Windows machine to some directory on your Linux machine. You do not need to install or register these fonts on Linux in any way; you just need to specify the location of the fonts using the FontSettings class in Aspose.Words. 第一步:把 C:\\Windows\\Fonts目录下字体拷贝到Linux( /usr/share/fonts/chinese)目录下,Linux目录可随意指定。 第二步:在Aspose加载WorkBook时配置字体路径 IndividualFontConfigs configs = new IndividualFontConfigs();
configs.setFontFolder("/usr/share/fonts/chinese", true);
LoadOptions loadOptions = new LoadOptions();
loadOptions.setFontConfigs(configs);
FileInputStream fi = new FileInputStream("D://MOBAN.xlsx");
Workbook wb = new Workbook(fi, loadOptions);
即可解决中文乱码。
以上是关于Aspose Cells Excel模板转PDF Linux中文乱码解决的主要内容,如果未能解决你的问题,请参考以下文章
转 (C#)利用Aspose.Cells组件导入导出excel文件