How to reduce one month from current date and want to sore in java.util.Date variable im using this code but it\'s shows error in 2nd line
java.util.Date
java
Using JodaTime :
Date date = new DateTime().minusMonths(1).toDate();
JodaTime provides a convenient API for date manipulation.
Note that similar Date API will be introduced in JDK8 with the JSR310.