Método SimpleDateFormat getDateFormatSymbols() en Java con ejemplos

El método getDateFormatSymbols() de la clase SimpleDateFormat se utiliza para devolver la copia de los símbolos de formato de fecha y hora.

Sintaxis:

public DateFormatSymbols getDateFormatSymbols()

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

Valor devuelto: el método devuelve una copia de los símbolos de formato.

Los siguientes programas ilustran el funcionamiento del método getDateFormatSymbols() de SimpleDateFormat:

Ejemplo 1:

// Java code to illustrate
// getDateFormatSymbols() method
  
import java.text.*;
import java.util.*;
  
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
    {
  
        // Initializing the SDF
        SimpleDateFormat SDFormat
            = new SimpleDateFormat();
  
        // Getting al DateFormatSymbols
        DateFormatSymbols DFSymbol
            = SDFormat.getDateFormatSymbols();
  
        // Getting the months
        String[] month = DFSymbol.getShortMonths();
        System.out.println("The Months are: ");
        for (int i = 0; i < month.length; i++) {
            System.out.println(month[i] + " ");
        }
    }
}
Producción:

The Months are: 
Jan 
Feb 
Mar 
Apr 
May 
Jun 
Jul 
Aug 
Sep 
Oct 
Nov 
Dec  

Ejemplo 2:

// Java code to illustrate
// getDateFormatSymbols() method
  
import java.text.*;
import java.util.*;
  
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
    {
  
        // Initializing the SDF
        SimpleDateFormat SDFormat
            = new SimpleDateFormat();
  
        // Getting al DateFormatSymbols
        DateFormatSymbols DFSymbol
            = SDFormat.getDateFormatSymbols();
  
        // Getting the weekdays
        String[] days = DFSymbol.getWeekdays();
        System.out.println("The days of the week are: ");
        for (int i = 0; i < days.length; i++) {
            System.out.println(days[i] + " ");
        }
    }
}
Producción:

The days of the week are: 
 
Sunday 
Monday 
Tuesday 
Wednesday 
Thursday 
Friday 
Saturday 

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 *