Método DateFormatSymbols getAmPmStrings() en Java con ejemplos

El método getAmPmStrings() de la clase DateFormatSymbols en Java se utiliza para obtener el formato de string de AM y PM. Por ejemplo, «AM» y «PM».

Sintaxis:

public String[] getAmPmStrings()

Parámetros: El método no toma ningún parámetro.

Valores devueltos: el método devuelve AM y PM en formato de string.

Los siguientes programas ilustran el uso del método getAmPmStrings().
Ejemplo 1:

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

Time 0 = AM
Time 1 = PM

Ejemplo 2:

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

Time 0 = AM

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

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 *