How do I do calendar arithmetic with java.util.Date?

deltanovember :

Currently I have a Date object representing a time. How would I add 5 minutes to this object?

WhiteFang34 :

You could use Calendar, which will make it easy to add any length of time:

Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(Calendar.MINUTE, 5);
Date newDate = cal.getTime();

For your case you could just add the time in milliseconds like this:

Date newDate = new Date(date.getTime() + 5 * 60 * 1000L);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How do I combine a java.util.Date object with a java.sql.Time object?

How to do calendar operations in Java GWT? How to add days to a Date?

How do I suppress the date line from 2-line java.util.logging output?

How do I convert an ISO 8601 date time String to java.util.LocalDateTime?

Calendar and array list : how do I assign the date right?

Flutter - how do i make a custom underline for a date in my calendar?

How do I display the calendar date on the top of chat messages?

how do i change text format to date in jalali calendar

How do I convert a 4-digit julian date(yDDD) into a calendar date format like MM/dd/yyy using java?

UWP - How do I convert date from calendar date picker to specified date format

How to change TIMEZONE for a java.util.Calendar/Date

How do I perform decimal arithmetic in Perl?

How do I use modular arithmetic on indices?

How do I parse this date format in Java?

How do I make a copy of java.util.Properties object?

What is java.util.NoSuchElementException and how do i fix it?

How do I suppress specific loggers in java.util.logging?

How do I set the end date of a jQuery ui datepicker calendar to the users start date please?

How do I automatically assign the date i clicked on my calendar to a textbox

How do I convert an alphabetic string to int and do arithmetic on it?

How to do hash arithmetic

How do I parse date String into Date object in Java?

GWT Date equivalent to java.util.Calendar

Set a java.util.Calendar future date

How do I use calendar and timezone

How do I fix a corrupt calendar cache?

How do I prevent Evolution calendar notifications?

How do I show my Outlook calendar in the agenda section of the date and time pop-up in Windows 10?

BigQuery - How do I check if data is missing from a table for a specific calendar date?