我遇到了同样的问题,并通过设置
"sun.awt.fontconfig"system属性,明确告诉AppEngine
VM要提取的特定字体配置,从而设法解决了该问题。尝试在源代码的最开始处插入以下代码(在使用任何字体或图形组件之前):
String fontConfig = System.getProperty("java.home") + File.separator + "lib" + File.separator + "fontconfig.Prodimage.properties"; if (new File(fontConfig).exists()) System.setProperty("sun.awt.fontconfig", fontConfig);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)