import hirondelle.date4j.DateTime; public class DateCalculator { public static void main(String[] args) { DateTime now = DateTime.now(TimeZone.getDefault()); DateTime future = now.plusDays(7); } }