aijava

welcome to my online log ! open java new world! Taste java charm........
posts - 1, comments - 4, trackbacks - 0, articles - 42
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

java基础学习6(java.util.Date)

Posted on 2006-11-05 17:56 阅读(105) 评论(0)  编辑  收藏 所属分类: java基础学习系列
import  java.text.DateFormat;
import  java.text.SimpleDateFormat;
import  java.util.Date;

public class  MainClass  {

   public static  void  main ( String []  a throws  Exception {

     DateFormat df =  new  SimpleDateFormat  ( "yyyy-MM-dd" ) ;

     Date d1 = df.parse ( "2001-01-01" ) ;

     Date d2 = df.parse ( "2000-01-01" ) ;

     String relation;
     if  ( d1.equals ( d2 ))
       relation =  "the same date as" ;
     else if  ( d1.before ( d2 ))
       relation =  "before" ;
     else if  ( d1.after ( d2 ))
       relation =  "after" ;
     System.out.println ( d1 +  " is "  + relation +  ' '  + d2 ) ;
   }
}

http://freehost13.websamba.com