Skip to content

Instantly share code, notes, and snippets.

@superalsrk
Created August 21, 2013 14:39
Show Gist options
  • Save superalsrk/6295338 to your computer and use it in GitHub Desktop.
Save superalsrk/6295338 to your computer and use it in GitHub Desktop.
JAVASETIPS
/**
* Get current date and set the hour,minute,second,microsceond to zero
*/
Calendar now = Calendar.getInstance();
now.set(Calendar.HOUR_OF_DAY, 0);
now.set(Calendar.MINUTE, 0);
now.set(Calendar.SECOND, 0);
now.set(Calendar.MILLISECOND, 0);
Date nowdate = now.getTime();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment