El método setDateFormatSymbols() de la clase SimpleDateFormat se utiliza para establecer los símbolos de formato de fecha y hora de este formato de fecha.
Sintaxis:
public void setDateFormatSymbols(DateFormatSymbols newFormatSymbols)
Parámetros: el método toma un parámetro newFormatSymbols que hace referencia a los nuevos símbolos de formato en los que se establecerá este formato de fecha.
Valor devuelto: el método devuelve un tipo vacío.
Los siguientes programas ilustran el funcionamiento del método setDateFormatSymbols() de SimpleDateFormat:
Ejemplo 1:
// Java code to illustrate // DateFormatSymbols() method import java.text.*; import java.util.*; public class SimpleDateFormat_Demo { public static void main(String[] args) throws InterruptedException, ParseException { // Initializing SimpleDateFormat SimpleDateFormat SDFormat = new SimpleDateFormat(); // Setting the DateFormatSymbols DateFormatSymbols DFSymbols = new DateFormatSymbols( new Locale("en", "US")); // Illustrating the set method SDFormat.setDateFormatSymbols(DFSymbols); // Displaying the formats Date date = new Date(); String str_Date1 = SDFormat.format(date); System.out.println("The SimpleDateFormat: " + (str_Date1)); // Working of DFS String[] the_days = DFSymbols.getShortWeekdays(); int i, j = 1; for (i = 1; i < the_days.length; i++) { System.out.print("Day" + j++ + " : " + the_days[i] + "\n"); } } }
Producción:
The SimpleDateFormat: 1/30/19 10:27 AM Day1 : Sun Day2 : Mon Day3 : Tue Day4 : Wed Day5 : Thu Day6 : Fri Day7 : Sat
Ejemplo 2:
// Java code to illustrate // DateFormatSymbols() method import java.text.*; import java.util.*; public class SimpleDateFormat_Demo { public static void main(String[] args) throws InterruptedException, ParseException { // Initializing SimpleDateFormat SimpleDateFormat SDFormat = new SimpleDateFormat(); // Setting the DateFormatSymbols DateFormatSymbols DFSymbols = new DateFormatSymbols( new Locale("es", "XL")); // Illustrating the set method SDFormat.setDateFormatSymbols(DFSymbols); // Displaying the formats Date date = new Date(); String str_Date1 = SDFormat.format(date); System.out.println("The SimpleDateFormat: " + (str_Date1)); // Working of DFS String[] the_days = DFSymbols.getShortWeekdays(); int i, j = 1; for (i = 1; i < the_days.length; i++) { System.out.print("Day" + j++ + " : " + the_days[i] + "\n"); } } }
Producción:
The SimpleDateFormat: 1/30/19 10:28 AM Day1 : dom Day2 : lun Day3 : mar Day4 : mi? Day5 : jue Day6 : vie Day7 : s?b
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