El método getDisplayName(int cal_field , int cal_style , Locale local ) de la clase Calendar se utiliza para devolver la representación de string de un valor de campo de calendario (int cal_field) en el estilo dado (int cal_style) y la configuración regional (int local).
Sintaxis:
public String getDisplayName(int cal_field, int cal_style, Locale local)
Parámetros: El método toma tres parámetros:
- cal_field : Es de tipo entero y hace referencia al campo del calendario sobre el que se va a realizar la operación.
- cal_style : es de tipo entero y se refiere al estilo que se supone que se aplica a la representación de string.
- local : este es del tipo de objeto Locale y se refiere a la configuración regional que representa la string.
Valor devuelto: el método devuelve la representación de string del campo dado en forma de estilo de paso o nulo si no hay ninguna representación de string disponible.
Los siguientes programas ilustran el funcionamiento del método getDisplayName() de la clase Calendario:
Ejemplo 1:
// Java Code to illustrate // getDisplayName() Method import java.util.*; public class Calendar_Demo_Locale { public static void main(String args[]) { // Creating Locale objects class Locale first_obj = new Locale("TURKISH", "Turkey"); Locale sec_obj = new Locale("ENGLISH", "UK"); // Displaying the objects System.out.println("First" + " object is : " + first_obj); System.out.println("Second" + " object is : " + sec_obj); // Getting the display names String obj_nm = first_obj.getDisplayName(); // Displaying the results System.out.println("Name of the" + " first object: " + obj_nm); // Getting the display names obj_nm = sec_obj.getDisplayName(); System.out.println("Name of the" + " second object: " + obj_nm); } }
First object is : turkish_TURKEY Second object is : english_UK Name of the first object: turkish (TURKEY) Name of the second object: english (UK)
Ejemplo 2:
// Java Code to illustrate // getDisplayName() Method import java.util.*; public class Calendar_Demo_Locale { public static void main(String args[]) { // Creating Locale objects class Locale first_obj = new Locale("RUSSIAN", "Russia"); Locale sec_obj = new Locale("GERMAN", "Germany"); // Displaying the objects System.out.println("First" + " object is : " + first_obj); System.out.println("Second" + " object is : " + sec_obj); // Getting the display names String obj_nm = first_obj.getDisplayName(); // Displaying the results System.out.println("Name of the" + " first object: " + obj_nm); // Getting the display names obj_nm = sec_obj.getDisplayName(); System.out.println("Name of the" + " second object: " + obj_nm); } }
First object is : russian_RUSSIA Second object is : german_GERMANY Name of the first object: russian (RUSSIA) Name of the second object: german (GERMANY)
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