Skip to content

Instantly share code, notes, and snippets.

@slezicz
Created January 29, 2016 14:59
Show Gist options
  • Save slezicz/67a4f5f8658b8333d6d8 to your computer and use it in GitHub Desktop.
Save slezicz/67a4f5f8658b8333d6d8 to your computer and use it in GitHub Desktop.
Add DAY to date
String dt = "2008-01-01"; // Start date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
c.setTime(sdf.parse(dt));
c.add(Calendar.DATE, 1); // number of days to add
dt = sdf.format(c.getTime()); // dt is now the new date
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment