Skip to content

Instantly share code, notes, and snippets.

@Budincsevity
Last active August 29, 2015 14:19
Show Gist options
  • Save Budincsevity/cad4afd1b523ec35f222 to your computer and use it in GitHub Desktop.
Save Budincsevity/cad4afd1b523ec35f222 to your computer and use it in GitHub Desktop.
Date to Calendar in Java
Date today = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(today);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment