e651. listing all available font families.txt

来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 16 行

TXT
16
字号
A font family refers to a set of font faces with a related typographic design. For example, the font faces in the family Lucida Sans Typewriter might be Lucida Sans Typewriter Bold, and Lucida Sans Typewriter Regular. This example lists all available font family names. 
Note: J2SE 1.4 only supports True Type fonts. 

    // Get all font family names
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    String fontNames[] = ge.getAvailableFontFamilyNames();
    
    // Iterate the font family names
    for (int i=0; i<fontNames.length; i++) {
    }
    // Aria
    // Comic Sans MS
    // Verdana
    // ...

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?