El método getCountry() de la clase Locale en Java se utiliza para obtener el código de país o región para la configuración regional especificada. Será una string vacía o un código ISO 3166 de 2 letras en mayúsculas, o un código UN M.49 de 3 dígitos.
Sintaxis:
LOCALE.getCountry()
Parámetros: Este método no toma ningún parámetro.
Valor de retorno: este método devuelve el código de país de una configuración regional determinada o una string vacía si la configuración regional está vacía.
Los siguientes programas ilustran el funcionamiento del método getCountry():
Programa 1:
// Java code to illustrate getCountry() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("English", "UK"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the country_code of this locale System.out.println("Country: " + first_locale.getCountry()); } }
Producción:
First Locale: english_UK Country: UK
Programa 2:
// Java code to illustrate getCountry() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("English", "India"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the country_code of this locale System.out.println("Country: " + first_locale.getCountry()); } }
Producción:
First Locale: english_INDIA Country: INDIA
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA