typedef struct ULocale ULocale
A Locale object represents a specific geographical, political,
or cultural region
ALocaleobject represents a specific geographical, political, or cultural region. An operation that requires aLocaleto perform its task is called locale-sensitive and uses theLocaleto tailor information for the user. For example, displaying a number is a locale-sensitive operation--the number should be formatted according to the customs/conventions of the user's native country, region, or culture.You create a
Localeobject using one of the three constructors in this class:The first argument to the constructors is a valid ISO Language Code. These codes are the lower-case two-letter codes as defined by ISO-639. You can find a full list of these codes at a number of sites, such as:. Locale( const UnicodeString& newLanguage); . . Locale( const UnicodeString& language, . const UnicodeString& country); . . Locale( const UnicodeString& language, . const UnicodeString& country, . const UnicodeString& variant);
http://www.ics.uci.edu/pub/ietf/http/related/iso639.txtThe second argument to the constructors is a valid ISO Country Code. These codes are the upper-case two-letter codes as defined by ISO-3166. You can find a full list of these codes at a number of sites, such as:
http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.htmlThe third constructor requires a third argument--the Variant. The Variant codes are vendor and browser-specific. For example, use WIN for Windows, MAC for Macintosh, and POSIX for POSIX. Where there are two variants, separate them with an underscore, and put the most important one first. For example, a Traditional Spanish collation might be referenced, with "ES", "ES", "Traditional_WIN".
Because a
Localeobject is just an identifier for a region, no validity check is performed when you construct aLocale. If you want to see whether particular resources are available for theLocaleyou construct, you must query those resources. For example, ask theNumberFormatfor the locales it supports using itsgetAvailableLocalesmethod.
Note: When you ask for a resource for a particular locale, you get back the best available match, not necessarily precisely what you asked for. For more information, look atResourceBundle.The
Localeclass provides a number of convenient constants that you can use to createLocaleobjects for commonly used locales. For example, the following refers to aLocaleobject for the United States:. Locale::USOnce you've created a
Localeyou can query it for information about itself. UsegetCountryto get the ISO Country Code andgetLanguageto get the ISO Language Code. You can usegetDisplayCountryto get the name of the country suitable for displaying to the user. Similarly, you can usegetDisplayLanguageto get the name of the language suitable for displaying to the user. Interestingly, thegetDisplayXXXmethods are themselves locale-sensitive and have two versions: one that uses the default locale and one that takes a locale as an argument and displays the name or country in a language appropriate to that locale.The TIFC provides a number of classes that perform locale-sensitive operations. For example, the
NumberFormatclass formats numbers, currency, or percentages in a locale-sensitive manner. Classes such asNumberFormathave a number of convenience methods for creating a default object of that type. For example, theNumberFormatclass provides these three convenience methods for creating a defaultNumberFormatobject:Each of these methods has two variants; one with an explicit locale and one without; the latter using the default locale.. UErrorCode success = U_ZERO_ERROR; . Locale myLocale; . NumberFormat *nf; . . nf = NumberFormat::createInstance( success ); delete nf; . nf = NumberFormat::createCurrencyInstance( success ); delete nf; . nf = NumberFormat::createPercentInstance( success ); delete nf;A. nf = NumberFormat::createInstance( myLocale, success ); delete nf; . nf = NumberFormat::createCurrencyInstance( myLocale, success ); delete nf; . nf = NumberFormat::createPercentInstance( myLocale, success ); delete nf;Localeis the mechanism for identifying the kind of object (NumberFormat) that you would like to get. The locale is just a mechanism for identifying objects, not a container for the objects themselves.Each class that performs locale-sensitive operations allows you to get all the available objects of that type. You can sift through these objects by language, country, or variant, and use the display names to present a menu to the user. For example, you can create a menu of all the collation objects suitable for a given language. Such classes implement these three class methods:
. static Locale* getAvailableLocales(int32_t& numLocales) . static UnicodeString& getDisplayName(const Locale& objectLocale, . const Locale& displayLocale, . UnicodeString& displayName) . static UnicodeString& getDisplayName(const Locale& objectLocale, . UnicodeString& displayName)
alphabetic index hierarchy of classes
this page has been generated automatically by doc++
(c)opyright by Malte Zöckler, Roland Wunderling
contact: doc++@zib.de