Locale-Sensitive Java Method
java.awt.Font
public String getFontName()
public String getFontName(Locale l)
Internationalization (I18n) Method Overview
Returns the font face name of the Font,
(localized for the specified locale if given).
For example, Helvetica Bold could be returned as the font face name.
Use getFamily to get the family name of the font.
Use getName to get the logical name of the font.
For more information click
here.
I18n Issues
Call the method that takes Locale as a parameter and make sure the Locale passed in is correct.
Locale-Sensitive Java Methods
|