Skip to content

Instantly share code, notes, and snippets.

@derekbar90
Created November 4, 2014 18:32
Show Gist options
  • Save derekbar90/53c9cb8a2c120b2f05b1 to your computer and use it in GitHub Desktop.
Save derekbar90/53c9cb8a2c120b2f05b1 to your computer and use it in GitHub Desktop.
getDate method
private String getDate(){
SimpleDateFormat date = new SimpleDateFormat("yyyy-MM-dd");
Date today = new Date();
return date.format(today);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment