GraphicsEnvironment.preferLocaleFonts() has the following syntax.
public void preferLocaleFonts()
In the following code shows how to use GraphicsEnvironment.preferLocaleFonts() method.
import java.awt.GraphicsEnvironment; public class Main { public static void main(String[] args) { GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); ge.preferLocaleFonts(); } }