java.util.Calendar.getTime()方法实例
java.util.Calendar.getTime() 方法返回一个Date对象,它表示此Calendar的时间值
声明
以下是java.util.Calendar.getTime()方法的声明
public final Date getTime()
参数
-
NA
返回值
该方法返回一个代表时间值日期。
异常
-
NA
例子
下面的示例演示java.util.calendar.getTime()方法的用法。
package com.yiibai; import java.util.*; public class CalendarDemo { public static void main(String[] args) throws InterruptedException { // create a calendar Calendar cal = Calendar.getInstance(); // print current time System.out.println(" Current time is : " + cal.getTime()); // add a delay of 2 seconds Thread.sleep(2000); // create a new calendar Calendar cal2 = Calendar.getInstance(); // print the next time Date d = cal2.getTime(); System.out.println(" Next time is : " + d); } }
让我们来编译和运行上面的程序,这将产生以下结果:
Current time is : Wed May 02 14:14:06 EEST 2012 Next time is : Wed May 02 14:14:08 EEST 2012