Total members 11889 |It is currently Thu Mar 28, 2024 10:30 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





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.");
  }




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  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     -  
 Using FTP in java     -  
 what is java     -  
 Java course     -  
 need help in java     -  



Topic Tags

Java Time
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com