Subtract seconds from current time using Calendar.add method
import java.util.Calendar;
public class Main {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
System.out.println("Current time : " + now.get(Calendar.HOUR_OF_DAY) + ":"
+ now.get(Calendar.MINUTE) + ":" + now.get(Calendar.SECOND));
now = Calendar.getInstance();
now.add(Calendar.SECOND, -50);
System.out.println("Time before 50 minutes : " + now.get(Calendar.HOUR_OF_DAY) + ":"
+ now.get(Calendar.MINUTE) + ":" + now.get(Calendar.SECOND)); }
}
Home
Java Book
Runnable examples
Java Book
Runnable examples
Date Add Time:
- Add amount to a date returning a new object
- Add hour to a date returning a new object
- Add millisecond to a date returning a new object
- Add minute to a date returning a new object
- Add month to a date returning a new object
- Add negative value to a calendar
- Add second to a date returning a new object
- Add week to a date returning a new object
- Add year to a date returning a new object
- Subtract days from current date using Calendar.add method
- Subtract hours from current date using Calendar.add method
- Subtract minutes from current date using Calendar.add method
- Subtract months from current date using Calendar.add method
- Subtract seconds from current time using Calendar.add method
- Subtract week from current date
- Subtract 1 year from the calendar
- Subtract year from current date