Package java.util
Class Locale

Public Method getCountry

String getCountry()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the country/region code for this Locale, which will either be the empty string of an upercase ISO 3166 2-latter code.

Example

   Locale loc = new Locale("de","AT","vienna");
   Logger.log("" + loc.getCountry());

The getCountry method returns the specified country.