java.util.GregorianCalendar.setTimeZone()方法實例
java.util.GregorianCalendar.setTimeZone(TimeZone zone) 方法用給定的時區值用來設置時區。
聲明
以下是java.util.GregorianCalendar.setTimeZone()方法的聲明
public void setTimeZone(TimeZone zone)
參數
-
zone -- 給定的時區。
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.util.GregorianCalendar.setTimeZone()方法的用法。
package com.yiibai; import java.util.*; public class GregorianCalendarDemo { public static void main(String[] args) { // create a new calendar GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance(); // print the current date and time System.out.println("" + cal.getTime()); // set to another time zone cal.setTimeZone(TimeZone.getTimeZone("GMT")); System.out.println("New Time Zone:" + cal.getTimeZone().getDisplayName()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Fri May 18 13:48:30 EEST 2012 New Time Zone:Greenwich Mean Time