Home » Tip Bank » Java |
|
Apr 19, 2019
- in
WEBINAR:
On-Demand
Building the Right Environment to Support AI, Machine Learning and Deep Learning
Watch
→
Operations on Dates and Times
See how to add or subtract days, months or years with these operations.
LocalDate tomorrow = LocalDate.now().plusDays(3); LocalDateTime anHourFromNow = LocalDateTime.now().plusHours(10); Long daysBetween = java.time.temporal.ChronoUnit.DAYS.between(LocalDate.now(), LocalDate.now().plusDays(2)); Duration duration = Duration.between(Instant.now(), ZonedDateTime.parse("2018-08-30T09:00:00+01:00[Europe/Stockholm]"));
Octavia Anghel
![]() |
Submit a Tip | ![]() |
Browse "Java" Tips | ![]() |
Browse All Tips |
html.net