El método toPattern() de la clase SimpleDateFormat se utiliza para devolver el patrón del formato de fecha.
Sintaxis:
public String toPattern()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve la string de patrón que describe este formato de fecha.
Los siguientes programas ilustran el funcionamiento del método toPattern() de SimpleDateFormat:
Ejemplo 1:
Java
// Java code to illustrate toPattern() method import java.text.*; import java.util.Calendar; public class SimpleDateFormat_Demo { public static void main(String[] args) throws InterruptedException { SimpleDateFormat SDformat = new SimpleDateFormat(); // Initializing Calendar object Calendar cal = Calendar.getInstance(); // Getting the Current Date String Todaysdate = SDformat.format(cal.getTime()); // Displaying the date System.out.println("Current Date: " + Todaysdate); // Using toPattern() method // to Print the Date Pattern System.out.println("The Date Pattern- " + SDformat.toPattern()); } }
Producción:
Current Date: 1/29/19 6:05 AM The Date Pattern- M/d/yy h:mm a
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