我已经在我的电脑中添加了一个新字体,我想在我的java小程序中使用该字体,我该怎么做?

时间:2016-07-05 16:31:08

标签: java fonts applet

try {
    font = Font.createFont(Font.TRUETYPE_FONT,new File("‪C:\\Users\\lenovo\\Desktop\\fonts\\digital-7.ttf") );
} catch (FontFormatException | IOException ex) {
    Logger.getLogger(Calculator.class.getName()).log(Level.SEVERE, null, ex);
}

font = font.deriveFont(Font.PLAIN,30);
GraphicsEnvironment ge =
        GraphicsEnvironment.getLocalGraphicsEnvironment();
ge.registerFont(font);

此方法无效。

0 个答案:

没有答案