Java get available Font

In this section, you will learn how to get the available font.

Java get available Font

Java get available Font

     

In this section, you will learn how to get the available font.

In order to retrieve all the available fonts, we have used the AWT package. The class GraphicsEnvironment describes the collection of all the available GraphicsDevices and Font objects.

getAllFonts()- This is the method of class GraphicsEnvironment. It returns an array of fonts available in the GraphicsEnvironment. 

getFontName()- This is the method of Font class. It returns the font name.

Here is the video tutorial of "How to get available fonts in Java?":

Here is the code of GetAvailableFont .java

import java.awt.*;
public class GetAvailableFont {
  public static void main(String[] a) {
  GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
  Font[] fonts = ge.getAllFonts(); 
  for (Font f : fonts) {
  System.out.println(f.getFontName());
  }
  }
}

Output will be displayed as:

Download Source Code