linux 安裝字型解決JAVA圖形中文亂碼問題

李小加發表於2024-06-02

1、在C:\Windows\Fonts\ 找到想要安裝到linux的字型;如微軟雅黑字型,它們可能的檔案包括:

2、將相關字型檔案複製到指定資料夾“/usr/share/fonts/”

3、執行字型安裝:

cd /usr/share/fonts/
mkfontscale
mkfontdir

如果提示 mkfontscale: command not found,需自行安裝 yum install mkfontscale
如果提示 fc-cache: command not found,則需要安裝yum install fontconfig

4、重新整理快取:

fc-cache

5、檢視已安裝的中文字型:

fc-list :lang=zh

6、重新整理系統字型快取:

fc-cache -fv

7、重啟tomcat服務

相關文章