I am trying to get the availalable font types on the system which is running my java application. Right now I use a call to:

fonts = Toolkit.getDefaultToolkit().getFontList();

This only returns a couple of fonts (specifically the fonts available in the awt toolkit). I really want all the fonts available on the system. I am using Windows NT as my platform.

Does anyone have any ideas?

Mich