i am trying to get system fonts in applet form client side but it does not work for applet help required.
+1
A:
Are you trying to get fonts using
GraphicsEnvironment e = GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = e.getAllFonts(); // Get the fonts
In this applet, it seems to work correctly.
Riduidel
2010-02-12 10:32:20