Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
Comparing Dates in Java
Code:
import java.util.*; import java.text.*;
public class CompareDate{ public static void main(String args[]){ Calendar cal = Calendar.getInstance(); Calendar currentcal = Calendar.getInstance(); cal.set(2000, Calendar.JUNE, 29); currentcal.set(currentcal.get(Calendar.YEAR), currentcal.get(Calendar.MONTH), currentcal.get(Calendar.DAY_OF_MONTH)); if(cal.before(currentcal)) System.out.print("Current date(" + new SimpleDateFormat("dd/MM/yyyy"). format(currentcal.getTime()) + ") is greater than the given date " + new SimpleDateFormat("dd/MM/yyyy").format(cal.getTime())); else if(cal.after(currentcal)) System.out.print("Current date(" + new SimpleDateFormat("dd/MM/yyyy"). format(currentcal.getTime()) + ") is less than the given date " + new SimpleDateFormat("dd/MM/yyyy").format(cal.getTime())); else System.out.print("Both date are equal."); } }
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )