Switch to full style
General Java code examples
Post a reply

Comparing Dates in Java

Tue Nov 11, 2008 10:47 pm

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(2000Calendar.JUNE29);
    
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.");
  }




Post a reply
  Related Posts  to : Comparing Dates in Java
 Comparing Arrays in java     -  
 DYNAMIC DATES IN MYSQL     -  
 Formatting dates in mysql     -  
 find the difference between dates in asp.net     -  
 Get Difference in days between two dates as a number     -  
 2d game in java-Monster-Java 2D Game Graphics and Animation     -  
 Java course     -  
 need help in java     -  
 What is Java API?!!!     -  
 java or .net     -  

Topic Tags

Java Time