Skip to content

Instantly share code, notes, and snippets.

@vainolo
Created October 28, 2018 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vainolo/c64ccc045c558ee37e1d763f688c28e1 to your computer and use it in GitHub Desktop.
Save vainolo/c64ccc045c558ee37e1d763f688c28e1 to your computer and use it in GitHub Desktop.
Changing the Font of a JOptionPane -
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
String[] fontNames = ge.getAvailableFontFamilyNames();
for (int index = 0; index < fontNames.length; index++) {
System.out.println(fontNames[index]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment