Skip to content

Instantly share code, notes, and snippets.

@zeroDivisible
Created October 28, 2013 23:41
Show Gist options
  • Save zeroDivisible/7206769 to your computer and use it in GitHub Desktop.
Save zeroDivisible/7206769 to your computer and use it in GitHub Desktop.
Java & add hours to calendar.
Calendar cal = Calendar.getInstance(); // creates calendar
cal.setTime(new Date()); // sets calendar time/date
cal.add(Calendar.HOUR_OF_DAY, 1); // adds one hour
cal.getTime(); // returns new date object, one hour in the future
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment