Locale getDisplayCountry(Locale) Método en Java con ejemplos

El método getDisplayCountry(Locale inLoc ) de la clase Locale en Java se usa para obtener el nombre del país o región para la configuración regional especificada. Este nombre se localizaría según inLoc .
 

Sintaxis:  

public String getDisplayCountry(Locale inLoc)

Parámetros: Este método toma un parámetro inLoc de tipo Locale que se refiere a la visualización localizada del nombre.
Valor devuelto: este método devuelve el nombre del país correspondiente a la configuración regional dada y al usuario.
Excepciones: el método lanza NullPointerException si el parámetro inLoc es nulo.
Los siguientes programas ilustran el funcionamiento del método getDisplayCountry(): 
Ejemplo 1:  

Java

// Java code to illustrate getDisplayCountry() method
 
import java.util.*;
 
public class Locale_Demo {
    public static void main(String[] args)
    {
 
        // Creating a new locale
        Locale first_locale
            = new Locale("English", "In");
 
        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);
 
        // Displaying the country_name of this locale
        System.out.println("Country: "
                           + first_locale
                                 .getDisplayCountry(
                                     new Locale("Spanish",
                                                "Spain")));
    }
}
Producción: 

First Locale: english_IN
Country: India

 

Ejemplo 2: 

Java

// Java code to illustrate getDisplayCountry() method
 
import java.util.*;
 
public class Locale_Demo {
    public static void main(String[] args)
    {
 
        // Creating a new locale
        Locale first_locale
            = new Locale("German", "Germany");
 
        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);
 
        // Displaying the country_name of this locale
        System.out.println("Country: "
                           + first_locale
                                 .getDisplayCountry(
                                     new Locale("English",
                                                "US")));
    }
}

Java

// Java code to illustrate getDisplayCountry() method
 
import java.util.*;
 
public class Locale_Demo {
    public static void main(String[] args)
    {
 
        // Creating a new locale
        Locale first_locale
            = new Locale("German", "Germany");
 
        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);
 
        // Displaying the country_name of this locale
        System.out.println("Country: "
                           + first_locale
                                 .getDisplayCountry(
                                     new Locale("English",
                                                "US")));
    }
}
Producción: 

First Locale: german_GERMANY
Country: GERMANY

 

Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Locale.html#getDisplayCountry(java.util.Locale)

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *