JFrame に ttf フォントを埋め込もうとしています。もちろん、私はさまざまなスレッドでたくさん検索しました。次のスニペットを試しました:
InputStream is = getClass().getResourceAsStream("abc.ttf");
Font myFont = Font.createFont(Font.TRUETYPE_FONT, is);
Font abcFont = myFont.deriveFont(Font.TRUETYPE_FONT,40);
2 行目 ( Font myFont = ...
) で、Eclipse は次のエラーを示しています。
Multiple markers at this line:
-unhandled exception type IOException
-unhandled exception type FontFormatException
あなたが解決策を知っていることを願っています!どうもありがとう!