Java Parse Date parseDate(String string)

Here you can find the source of parseDate(String string)

Description

parse Date

License

Apache License

Declaration

public static Date parseDate(String string) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

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

public class Main {
    public static Date parseDate(String string) {
        Date result = new Date();
        DateFormat format = new SimpleDateFormat("M/d/y h:m a");
        try {/*from ww w  .java  2 s .co m*/
            result = format.parse(string);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return result;
    }
}

Related

  1. parseDate(String strDate)
  2. parseDate(String strDate)
  3. parseDate(String strDate)
  4. parseDate(String strDate, String format)
  5. parseDate(String strFormat, String dateValue)
  6. ParseDate(String string, String format)
  7. parseDate(String t)
  8. parseDate(String text)
  9. parseDate(String text, String[] datePattern, int index)