Could anyone tell me how to increment or decrement only the month in a date?
Could anyone tell me how to increment or decrement only the month in a date?
Increment and decrement months can be done using the Calendar Class as:
import java.util.Calendar;
public class Main {
public static void main(String[] args) {
Calendar cal = Calendar.getInstance();
System.out.println("Now : " + cal.getTime());
int monthsToDecrement = -1;
cal.add(Calendar.MONTH, monthsToDecrement);
System.out.println("Date after decrement: " + cal.getTime());
}