Método DateFormatSymbols getMonths() en Java con ejemplos

El método getMonths() de la clase DateFormatSymbols en Java se utiliza para obtener el nombre 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 de los meses en un formato de string.

Los siguientes programas ilustran el uso del método getMonths().

Ejemplo 1:

// Java code to demonstrate getMonths()
  
import java.text.DateFormatSymbols;
  
public class DateFormat_Main {
    public static void main(String args[])
    {
        int i;
  
        // Initializing DateFormatSymbols
        String months[]
            = new DateFormatSymbols().getMonths();
  
        for (i = 0; i < months.length - 1; i++) {
  
            // Displaying the months
            System.out.println("Month = "
                               + months[i]);
        }
    }
}
Producción:

Month = January
Month = February
Month = March
Month = April
Month = May
Month = June
Month = July
Month = August
Month = September
Month = October
Month = November
Month = December

Ejemplo 2:

// Java code to demonstrate getMonths()
  
import java.text.DateFormatSymbols;
  
public class DateFormat_Main {
    public static void main(String args[])
    {
  
        int i;
  
        // Initializing DateFormatSymbols
        String months[]
            = new DateFormatSymbols().getMonths();
  
        for (i = 0; i < months.length / 2; i++) {
  
            // Displaying the months
            System.out.println("Month " + i
                               + " = " + months[i]);
        }
    }
}
Producción:

Month 0 = January
Month 1 = February
Month 2 = March
Month 3 = April
Month 4 = May
Month 5 = June

Referencia: https://docs.oracle.com/javase/8/docs/api/java/text/DateFormatSymbols.html#getMonths–

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 *