Skip to content

Instantly share code, notes, and snippets.

@jddeep
Created May 9, 2019 10:29
Show Gist options
  • Save jddeep/18831dce2f59c27ab2207c9aeef0e84b to your computer and use it in GitHub Desktop.
Save jddeep/18831dce2f59c27ab2207c9aeef0e84b to your computer and use it in GitHub Desktop.
public static Date getDateFromString(String date) {
SimpleDateFormat sf = new SimpleDateFormat("M/dd/yyyy");
sf.setLenient(true);
try {
return sf.parse(date);
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment