Skip to content

Instantly share code, notes, and snippets.

@aziz781
Created November 3, 2011 13:48
Show Gist options
  • Save aziz781/1336525 to your computer and use it in GitHub Desktop.
Save aziz781/1336525 to your computer and use it in GitHub Desktop.
java get current date
public static Date getCurrentDate()
{
Calendar calendar = Calendar.getInstance();
Date currentDate = calendar.getTime();
String dateStr= new SimpleDateFormat("dd/MM/yyyy").format(currentDate);
return getDate(dateStr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment