https://blog.csdn.net/wsjzzcbq/article/details/112252102
项目打包时,会对resources目录下的字体文件进行压缩,项目部署后,又会对字体文件进行解压,导致字体文件发生变化,进而损坏字体文件,因此报错 simsun.ttc is not a valid TTF file。笔者初次遇到这个报错时也很棘手,以为是字体文件本身的问题,后来仔细对比才发现打包后的字体文件大小和打包前不同,如果将打包前的字体文件直接复制到打包后的项目中,就没有这个报错了
————————————————————————————————————————————————————————————
使用 simsun.ttc 放在classpath下
项目打包时,会对resources目录下的字体文件进行压缩,项目部署后,又会对字体文件进行解压,导致字体文件发生变化,进而损坏字体文件,因此报错 simsun.ttc is not a valid TTF file
<build> <resources> <resource> <directory>src/main/resources/</directory> <filtering>true</filtering> <includes> <include>**/*.ttc</include> </includes> <excludes> <exclude>**/*.font</exclude> </excludes> </resource> <resource> <directory>src/main/resources/</directory> <filtering>false</filtering> <includes> <include>**/*.font</include> </includes> </resource> </resources> </build>
<build> <resources> <resource> <directory>src/main/resources/</directory> <filtering>true</filtering> <excludes> <exclude>fonts/*</exclude> </excludes> </resource> <resource> <directory>src/main/resources/</directory> <filtering>false</filtering> <includes> <include>fonts/*</include> </includes> </resource> </resources> </build>
BaseFont bf = BaseFont.createFont("fonts/simsun.ttc", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
//设置中文字体,解决中文不能显示问题(加载classpath下字体, 名字后面要加上type索引 0/1,不能大于1,看源码就知道) BaseFont bf = BaseFont.createFont("/fonts/simsun.ttc,1", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
1、将字体文件放在服务器的某个文件夹下,而不是放在resources目录下跟随项目,这样就不存在打包压缩的问题了,就解决了
2、项目打包后,手动将没被压缩的字体文件复制到打包后的对应文件夹下
3、使用系统的字体文件,如果系统环境没有字体文件,可以给系统安装字体文件,这个解决办法其实和办法1是同样的道理,这里推荐使用办法1
https://blog.csdn.net/zouliping123456/article/details/78950689
场景:
解决JasperReport在Linux系统下找不到字体的问题
1.异常信息
以JasperReport3.7.6为例:
net.sf.jasperreports.engine.util.JRFontNotFoundException: 2.解决方法 2.1.导入字体 IReport中先导入设计报表作需要的字体:【Tools->Options->IReport->Fonts】,选择【Install Font】,然后选择你的字体文件,如果是中文字体,则选择【PDF Encoding】为【Identity-H (Unicode with horizontal writing)】并勾选【Embed this font in PDF Document】 2.2.报表设计 把PdfFontName, PdfEncoding, PdfEmbedded三个设置都去掉。报表设计中使用的字体只能选择上面导入的字体列表中的字体。 2.3.导出字体 在【Tools->Options->IReport->Fonts】中选择所有手动导入的字体(不包括内置的),然后选择【Export as extension】,把字体导出为一个Jar包。 2.4.添加字体JAR包 把字体JAR包添加在运行环境classpath中,或随项目发布。
———————————————————————————————————————————
https://www.freesion.com/article/74181399976/