Cannot found font installed on the system

首先需要在Windows系统里找到Times New Roman这个字体,然后将其上传到服务器里的/usr/share/fonts下

Cannot found font installed on the system_第1张图片

将这个字体复制粘贴到桌面(或者其他文件夹都OK),你会得到以下四个文件:

将这四个文件上传到服务器的/usr/share/fonts文件夹下
执行命令fc-cache
删除matplotlib的缓存rm ~/.cache/matplotlib/ -rf (可忽略)

Cannot found font installed on the system_第2张图片

 服务器上查看安装的字体:fc-list

显示Times New Roman 说明成功。

Cannot found font installed on the system_第3张图片

在docker容器中放对应的中文包

/home/build/alpha-erp
docker exec -it alpha-erp bash
yum -y install fontconfig
exit
docker cp font/ alpha-erp:/usr/share/fonts
docker restart alpha-erp

注意!!!!

:重启java 服务生效。(不重启可能不会生效)

copy加了之后,doker容器每次会自动加载,如果没加可能会每次都要刷上面的脚本

Cannot found font installed on the system_第4张图片

你可能感兴趣的:(java)