一、linux上缺少中文字体:
①上传并解压字体
alt+p
put e:/*.zip
mkdir windows
unzip windows.zip -d /usr/share/fonts/windows
②
更改这些字体库的权限:
# chmod 755 /usr/share/fonts/windows/*
# mkfontscale
注:如果没有mkfontscale这个命令,可以使用”yum install mkfontscale“获取
接着建立dir文件
# mkfontdir
然后运行
# fc-cache (如果命令不存在,直接重启就可以了)
# fc-list 查看字体列表
二、程序读取设置编码格式:
LoadOptions opt = new LoadOptions();
opt.setEncoding(Encoding.CHARSET_GB2312);
Document doc = new Document(inputstream,opt);