Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering if I can get a new Calendar object based on current time plus a given timespan, say 5 minutes.

share|improve this question

4 Answers

up vote 7 down vote accepted
Calendar c = Calendar.getInstance(); //gives u calendar with current time
c.add(Calendar.MINUTE, 5); //add 5 minutes to calendar
share|improve this answer

Use add function of Calendar class for adding and setTime(new Date()) for getting calendar based on current time.

share|improve this answer

Calendar.getInstance().setTime(new Date().getTime() + 5 * 60 * 1000L)) ;

share|improve this answer

You got to use c.set() methods to set year, month and date for the calendar object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.