Mega Code Archive

 
Categories / Java / 2D Graphics GUI
 

Get the available font names

import java.awt.Font; import java.awt.GraphicsEnvironment; public class Main {   public static void main(String[] args) {     GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();     Font[] fonts = ge.getAllFonts();     for (Font font : fonts) {       String fontName = font.getName();       String familyName = font.getFamily();       System.out.println("Font: " + fontName + "; family: " + familyName);     }   } }