1LocalDate today = LocalDate.now();
2LocalDate tomorrow = today.plusDays(1);
3
4// In string format
5LocalDate today = LocalDate.now();
6String tomorrow = (today.plusDays(1)).format(DateTimeFormatter.ISO_DATE);
1Date dt = new Date();
2DateTime dtOrg = new DateTime(dt);
3DateTime dtPlusOne = dtOrg.plusDays(1);