时钟是一个记录时间流逝的工具,
它是根据地球自转周期以及各地时差而确定的一种计时规则,
目前全球共二十四个时区,地球自转周期约为24小时,各时区时差
约为一小时,而日期则是根据地球公转周期确定的计日规则,地球公转周期
约为365~366天,那么日期时间有哪些基本配置项呢,请看本文章,
1、年、月、日
年月日是日期的基本单位,月份规则是:
我重复一下:
七前单大,八后双大,12个月,闰二多一。
也就是七月份之前(包括七月在内)逢单则为31天,逢双则为30天,
八月份之后(包括八月在内)逢双则为31天,逢单则为30天,闰年(即本年应该为366天)时,二月
多一天,当然“七前单大,八后双大”不包括二月,除闰年外,二月只有28天,所以闰年有29天。
2、时、分、秒
这个我们都知道,即1小时=60分钟,1分钟=60秒钟。
所以1天=24小时=24*60分钟=24*60*60秒。
3、毫秒
这个就是编程语言中特有的了,现在的计算机处理速度都是毫秒级的了,
因此这个值得留恋,而1秒=1000毫秒。
当然,还有其他基本配置项了,比如周,我就不一一说明了。
那么,在JAVA语言中,如何获取日期时间呢,这个其实很简单了,看程序:
// get the supported ids for GMT-08:00 (Pacific Standard Time)
String[] ids = TimeZone.getAvailableIDs(-8 * 60 * 60 * 1000);
// if no ids were returned, something is wrong. get out.
if (ids.length == 0)
System.exit(0);
// begin output
System.out.println("Current Time");
// create a Pacific Standard Time time zone
SimpleTimeZone pdt = new SimpleTimeZone(-8 * 60 * 60 * 1000, ids[0]);
// set up rules for daylight savings time
pdt.setStartRule(Calendar.APRIL, 1, Calendar.SUNDAY, 2 * 60 * 60 * 1000);
pdt.setEndRule(Calendar.0ctober, -1, Calendar.SUNDAY, 2 * 60 * 60 * 1000);
// create a GregorianCalendar with the Pacific Daylight time zone
// and the current date and time
Calendar calendar = new GregorianCalendar(pdt);
Date trialTime = new Date();
calendar.setTime(trialTime);
之后就可以获取日期时间的基本配置项了,看程序:
System.out.println("AM_PM: " + calendar.get(Calendar.AM_PM));
System.out.println("HOUR: " + calendar.get(Calendar.HOUR));
System.out.println("HOUR_OF_DAY: " + calendar.get(Calendar.HOUR_OF_DAY));
System.out.println("MINUTE: " + calendar.get(Calendar.MINUTE));
System.out.println("SECOND: " + calendar.get(Calendar.SECOND));
当然还有很多配置项了,只要在开发工具中,相应类里面
输入Calendar,然后查看相应配置项就可以了。