tags:

views:

28

answers:

1

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