Java examples for Date Time:Calendar
To compare two different Calendar objects, use boolean after(Calendar anotherCal) method.
import java.util.Calendar; public class Main { public static void main(String[] args) { Calendar futureCal = Calendar.getInstance(); futureCal.set(Calendar.YEAR, 2017); Calendar now = Calendar.getInstance(); /* w w w. j av a2s . c o m*/ System.out.println("Current date : " + (now.get(Calendar.MONTH) + 1) + "-" + now.get(Calendar.DATE) + "-" + now.get(Calendar.YEAR)); System.out.println("Is futureCal after now ? : " + futureCal.after(now)); } }