Java String to Date stringToDate(String sDate)

Here you can find the source of stringToDate(String sDate)

Description

string To Date

License

Open Source License

Declaration

public static Date stringToDate(String sDate) throws Exception 

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 {

    public static Date stringToDate(String sDate) throws Exception {
        SimpleDateFormat stringToDate;
        try {/*from  w  ww.  j  av a2s.  c  o  m*/
            stringToDate = new SimpleDateFormat("dd/MM/yyyy");
            return stringToDate.parse(sDate);
        } catch (ParseException e) {
            stringToDate = new SimpleDateFormat("yyyy-MM-dd");
            return stringToDate.parse(sDate);
        }
    }
}

Related

  1. StringToDate(String s)
  2. stringToDate(String s)
  3. StringToDate(String s)
  4. stringToDate(String s, DateFormat formatter)
  5. stringToDate(String s, String format)
  6. stringToDate(String source)
  7. stringToDate(String source, String format)
  8. StringToDate(String str)
  9. stringToDate(String str)