posts - 14,  comments - 37,  trackbacks - 0

 

 1public boolean compDate(String s1,String s2){
 2        int day=0
 3  SimpleDateFormat sf=new SimpleDateFormat("yyyy-MM-dd");
 4  GregorianCalendar calendar1=new GregorianCalendar();
 5  GregorianCalendar calendar2=new GregorianCalendar();
 6  //String s1="2006-04-21";
 7  //String s2="2006-04-25";
 8  Date xxx1=new Date();
 9  Date xxx2=new Date();
10  try {
11   xxx1=sf.parse(s1);
12   xxx2=sf.parse(s2);
13   day = (int) ((xxx2.getTime() - xxx1.getTime()) / 3600 / 24 / 1000);
14  }
 catch (ParseException e) {
15   // TODO Auto-generated catch block
16   e.printStackTrace();
17  }

18  if(day>10){
19   return true;
20  }
else{
21   return false;
22  }

23  }
 
posted on 2007-06-26 14:22 冰封的爱 阅读(2846) 评论(0)  编辑  收藏 所属分类: 技术

只有注册用户登录后才能发表评论。


网站导航:
 
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用链接

留言簿(3)

随笔档案

文章分类

文章档案

相册

搜索

  •  

最新评论

阅读排行榜

评论排行榜