Java String to Date strToDate(String dateInString)

Here you can find the source of strToDate(String dateInString)

Description

Convierte una fecha tipo string a un tipo Date

License

Open Source License

Parameter

Parameter Description
dateInString a parameter

Return

newDate

Declaration

public static Date strToDate(String dateInString) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    /**//from w  w  w.  j a  va 2s  . c  om
     * Convierte una fecha tipo string a un tipo Date
     * @author Esther Flores Rodriguez (esther.fr03@gmail.com)
     * @param dateInString
     * @return newDate
     */
    public static Date strToDate(String dateInString) {
        Date newDate = null;
        SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");

        if (dateInString != null) {
            try {
                newDate = sdf.parse(dateInString);
            } catch (ParseException ex) {
                ex.printStackTrace();
            }
        }

        return newDate;
    }
}

Related

  1. strToDate(String _date, String format)
  2. strToDate(String date)
  3. strToDate(String date)
  4. strToDate(String date, String pattern)
  5. StrToDate(String dateFormat)
  6. strToDate(String dateStr, String dateFormat)
  7. strToDate(String dateStr, String format)
  8. strToDate(String format, String dateStr)
  9. strToDate(String i_StrDate, String i_Format)