Calendar,Date,long(Millis)转换
Calendar与Date、long的转换:
Calendar ca = Calendar.getInstance();
Date d = ca.getTime();
long l = ca.getTimeInMillis();
ca.setTime(d);
ca.setTimeInMillis(l);
Date和long间的转换:
Date d = new Date();
long l = d.getTime();
d.setTime(l);
d = new Date(l);
Tags: java基础
原创文章如转载,请注明:转载自:飞扬部落编程仓库 : http://www.busfly.net/csdn/
本文链接地址:http://www.busfly.net/csdn/post/Calendar-Date-long-Millis.html
如果你喜欢本文,请顶一下,支持我,你的支持是我继续发好文章的最大动力。谢谢。
好东西需要分享,快把本文发给你的朋友吧~!~