Need to find out list of Chinese fonts installed on OS
Hi,
I have tried the following code:
String [] fontNames = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames(new Locale("CN","zh"));
for(int i=0; i<fontNames.length; i++){
System.out.println(""+fontNames[i]);
}
And I have set language in Regional and Language options to Chinese(PRC).
But it's giving me list of all fonts installed on my OS.
Can anybody help me in this?
Regards,
Kalyani.>

