Java String to Date strToDate(String str, String format, java.util.Date defaultValue)

Here you can find the source of strToDate(String str, String format, java.util.Date defaultValue)

Description

str To Date

License

Open Source License

Declaration

public static java.util.Date strToDate(String str, String format, java.util.Date defaultValue) 

Method Source Code

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

import java.text.SimpleDateFormat;

public class Main {

    public static java.util.Date strToDate(String str, java.util.Date defaultValue) {
        return strToDate(str, "yyyy-MM-dd HH:mm:ss", defaultValue);
    }//from   ww w . j ava2 s  .  c om

    public static java.util.Date strToDate(String str, String format, java.util.Date defaultValue) {
        SimpleDateFormat fmt = new SimpleDateFormat(format);
        try {
            defaultValue = fmt.parse(str);
        } catch (Exception localException) {
        }
        return defaultValue;
    }
}

Related

  1. strToDate(String format, String dateStr)
  2. strToDate(String i_StrDate, String i_Format)
  3. strToDate(String input, String format)
  4. strToDate(String s, Date defaultValue)
  5. strToDate(String str)
  6. strToDate(String strD)
  7. strToDate(String strDate)
  8. strToDate(String strDate)
  9. strToDate(String strDate)