开发者

Incrementing a java.util.Date by one day

开发者 https://www.devze.com 2023-01-17 16:24 出处:网络
What is the correct way to increment a java.util.Date by one day. I\'m thinking something like Calendar cal = Calendar.getInstan开发者_开发技巧ce();

What is the correct way to increment a java.util.Date by one day.

I'm thinking something like

        Calendar cal = Calendar.getInstan开发者_开发技巧ce();
        cal.setTime(toDate);
        cal.add(Calendar.DATE, 1);
        toDate = cal.getTime();

It doesn't 'feel' right.


That would work.

It doesn't 'feel' right.

If it is the verbosity that bothers you, welcome to the Java date-time API :-)


If you do not like the math in the solution from Tony Ennis

Date someDate = new Date(); // Or whatever
Date dayAfter = new Date(someDate.getTime() + TimeUnit.DAYS.toMillis( 1 ));

But more or less since finding this Q/A, I have been using JodaTime, instead, and have recently switched to the new DateTime in Java 8 (which inspired by but not copied from Joda - thanks @BasilBourqueless for pointing this out).

Java 8

In Java 8, almost all time-based classes have a .plusDays() method making this task trivial:

LocalDateTime.now()  .plusDays(1);
LocalDate.now()      .plusDays(1);
ZonedDateTime.now()  .plusDays(1);
Duration.ofDays(1)   .plusDays(1);
Period.ofYears(1)    .plusDays(1);
OffsetTime.now()     .plus(1, ChronoUnit.DAYS);
OffsetDateTime.now() .plus(1, ChronoUnit.DAYS);
Instant.now()        .plus(1, ChronoUnit.DAYS);

Java 8 also added classes and methods to interoperate between the (now) legacy Date and Calendar etc. and the new DateTime classes, which are most certainly the better choice for all new development.


Yeah, that's right. Java Date APIs feel wrong quite often. I recommend you try Joda Time. It would be something like:

DateTime startDate = ...
DateTime endDate = startDate.plusDays(1);

or:

Instant start = ...
Instant end = start.plus(Days.days(1).toStandardDuration());


Here's how I do it:

Date someDate = new Date(); // Or whatever    
Date dayAfter = new Date(someDate.getTime()+(24*60*60*1000));

Where the math at the end converts a day's worth of seconds to milliseconds.


If Java 8 or Joda Time are not an option, you could always opt for Apache DateUtils:

DateUtils.addDays(myDate, 1);


I believe joda time library makes it much more clean to work with dates.


Date thisDate = new Date(System.currentTimeMillis());

Date dayAfter = new Date(thisDate.getTime() + TimeUnit.DAYS.toMillis( 1 ));

Date dayBefore = new Date(thisDate.getTime() + TimeUnit.DAYS.toMillis( -1 ));


I am contributing the modern answer.

It doesn't 'feel' right.

My suggestion is that why it doesn’t feel right is because it’s so verbose. Adding one day to a date is conceptually a simple thing to do and ought to have a simple representation in your program. The problem here is the poor design of the Calendar class: when you use it, your code needs to be this verbose. And you are correct: you should not use the poorly designed Calendar class. It’s long outdated. Using java.time, the modern Java date and time API, adding one day is simple, also in code:

    LocalDate toDate = LocalDate.of(2020, Month.FEBRUARY, 28);
    LocalDate nextDate = toDate.plusDays(1);
    System.out.println("Incremented date is " + nextDate);

Output is:

Incremented date is 2020-02-29

In case your need is for a different type than LocalDate, other java.time classes also have a plusDays method that you can use in the same way, as already shown in the answer by Ivin.

Links

  • Oracle tutorial: Date Time explaining how to use java.time.
  • Answer by Ivin
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号