El método getShortMonths() de la clase DateFormatSymbols en Java se utiliza para obtener el nombre abreviado de los meses del calendario en formato de string.
Sintaxis:
public String[] getMonths()
Parámetros: El método no toma ningún parámetro.
Valores devueltos: el método devuelve el nombre abreviado de los meses en un formato de string.
Los siguientes programas ilustran el uso del método getShortMonths().
Ejemplo 1:
// Java code to demonstrate getShortMonths() import java.text.DateFormatSymbols; public class DateFormat_Main { public static void main(String args[]) { int i; // Initializing DateFormatSymbols String months[] = new DateFormatSymbols() .getShortMonths(); for (i = 0; i < months.length - 1; i++) { // Displaying the short months System.out.println( "Month = " + months[i]); } } }
Producción:
Month = Jan Month = Feb Month = Mar Month = Apr Month = May Month = Jun Month = Jul Month = Aug Month = Sep Month = Oct Month = Nov Month = Dec
Ejemplo 2:
// Java code to demonstrate getShortMonths() import java.text.DateFormatSymbols; public class DateFormat_Main { public static void main(String args[]) { int i; // Initializing DateFormatSymbols String months[] = new DateFormatSymbols() .getShortMonths(); for (i = 0; i < months.length / 2; i++) { // Displaying the short months System.out.println( "Month " + i + " = " + months[i]); } } }
Producción:
Month 0 = Jan Month 1 = Feb Month 2 = Mar Month 3 = Apr Month 4 = May Month 5 = Jun
Referencia: https://docs.oracle.com/javase/8/docs/api/java/text/DateFormatSymbols.html#getShortMonths–
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