Is there a way to get the file path of a font in Java 7?
Note: I got all the system font names through:
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
String []fontFamilies = ge.getAvailableFontFamilyNames();
Would I possibly use reflection? Any help would be great.