El método parseObject() de la clase DateFormat devolverá los datos al analizar una string en un objeto SimpleDateFormat.
Sintaxis:
public Object parseObject(source,pos)
Parámetros: Este método acepta dos parámetros
- fuente: es una string que se necesita analizar.
- pos: Es el objeto ParsePosition con un índice.
Valor de retorno: este método devolverá una fecha analizada a partir de una string y nula en caso de error.
Ejemplo 1:
Java
// Java program to illustrate // DateFormat parseObject() Method // importing the required packages import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; class Testclass { public static void main (String[] args) { Date d = new Date(); // printing the actual date value System.out.println("Actual Date : "+d); // initializing the SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat("MM-dd-yyyy"); // passing a string to parseObject() // method and converting it into date d = (Date) sdf.parseObject("10-11-2021"); // printing the parsed date value System.out.println("Parsed Date : "+d); } }
Producción
Actual Date : Tue Dec 14 09:49:39 UTC 2021 Parsed Date : Mon Oct 11 00:00:00 UTC 2021
Ejemplo 2:
Java
// Java program to illustrate // DateFormat parseObject() Method // importing the required packages import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; class Testclass { public static void main(String[] args) { // initializing the Date Date d = new Date(); // printing the actual date value System.out.println("Actual Date : " + d); // initializing the SimpleDateFormat SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yy hh.mm.ss"); // passing a string to parseObject() // method and converting it into date d = (Date)sdf.parseObject("04/10/21 19.30.45"); // printing the parsed date value System.out.println("Parsed Date : " + d); } }
Producción
Actual Date : Tue Dec 14 09:53:31 UTC 2021 Parsed Date : Sat Apr 10 19:30:45 UTC 2021
Publicación traducida automáticamente
Artículo escrito por akashdeepkatari y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA