Skip to content

Instantly share code, notes, and snippets.

@beydogan
Created June 11, 2013 12:25
Show Gist options
  • Save beydogan/5756413 to your computer and use it in GitHub Desktop.
Save beydogan/5756413 to your computer and use it in GitHub Desktop.
Java string to date
birthdate_s = "21/07/2013"
SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");
Date birthdate = new Date();
try {
birthdate = df.parse(birthdate_s);
} catch (ParseException ex) {
Logger.getLogger(MainScreen.class.getName()).log(Level.SEVERE, null, ex);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment