I\'m working with a date in this format: yyyy-mm-dd.
yyyy-mm-dd
How can I increment this date by one day?
you can use Simple java.util lib
Calendar cal = Calendar.getInstance(); cal.setTime(yourDate); cal.add(Calendar.DATE, 1); yourDate = cal.getTime();