我正在尝试在 JFrame 中嵌入 ttf 字体。当然,我在各种线程中搜索了很多。我尝试了以下代码段:
InputStream is = getClass().getResourceAsStream("abc.ttf");
Font myFont = Font.createFont(Font.TRUETYPE_FONT, is);
Font abcFont = myFont.deriveFont(Font.TRUETYPE_FONT,40);
在第二行 ( Font myFont = ...
) 中,eclipse 显示以下错误:
Multiple markers at this line:
-unhandled exception type IOException
-unhandled exception type FontFormatException
希望你知道一个解决方案!非常感谢!