zhyiwww
用平实的笔,记录编程路上的点点滴滴………
posts - 536,comments - 394,trackbacks - 0
 

 

转换:

从date到string

dateformat df = new simpledateformat("yyyy-mm-dd");

date d = new date();

string dstr = df.format(d);

从string到日期

dateformat df = new simpledateformat("yyyy-mm-dd");

date d = df.parse("2014-02-19");

 

从date到calendar

calendar cd1 = calendar.getinstance();

date sd1 = df.parse(startdate);        

cd1.settime(sd1);

如:

startdate="2014-02-19";

从calender到date

calendar cd1 = calendar.getinstance();

date d = cd1.gettime();

 

 

格式化:

格式化date

dateformat df = new simpledateformat("yyyy-mm-dd");

string dstr = df.format(new date());

格式化calendar

dateformat df = new simpledateformat("yyyy-mm-dd");

calendar cd1 = calendar.getinstance();

string dstr = df.format(cd1.gettime());

格式化日期字符串

dateformat df = new simpledateformat("yyyy-mm-dd");

date d = df.parse("2014-02-19");

dateformat df1 = new simpledateformat("mm-dd");

string dstr2 = df1.format(d);

 

 



|----------------------------------------------------------------------------------------|
                           凯发k8网页登录的版权声明  凯发k8网页登录的版权所有 @zhyiwww
            引用请注明来源 http://www.blogjava.net/zhyiwww   
|----------------------------------------------------------------------------------------|
posted on 2014-02-19 18:20 zhyiwww 阅读(729) 评论(0)  编辑  收藏 所属分类: j2ee

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


网站导航:
              
 
网站地图