I\'m working with a date in this format: yyyy-mm-dd.
yyyy-mm-dd
How can I increment this date by one day?
Date newDate = new Date(); newDate.setDate(newDate.getDate()+1); System.out.println(newDate);