Java Calendar setTimeZone() 方法



描述

Java Calendar setTime(TimeZone) 方法使用给定的时区设置时区。

声明

以下是java.util.Calendar.setTime() 方法的声明

public void setTimeZone(TimeZone value)

参数

value − 给定的时区

返回值

此方法不返回值。

异常

在当前日期的日历实例中设置时区示例

以下示例演示了 Java Calendar setTimeZone() 方法的用法。我们使用 getInstance() 方法创建一个当前日期的日历实例,并打印日历实例的时区。然后,我们使用 setTimeZone() 方法更新日期的时区。最后,打印更新后的时区。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.TimeZone;

public class CalendarDemo {
   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance();

      // print current time zone
      String name = cal.getTimeZone().getDisplayName();
      System.out.println("Current Time Zone:" + name );
      TimeZone tz = TimeZone.getTimeZone("GMT");

      // set the time zone with the given time zone value 
      // and print it
      cal.setTimeZone(tz);
      System.out.println(cal.getTimeZone().getDisplayName());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Current Time Zone:India Standard Time
Greenwich Mean Time

在当前日期的 GregorianCalendar 实例中设置时区示例

以下示例演示了 Java Calendar setTimeZone() 方法的用法。我们使用 GregorianCalendar() 方法创建一个当前日期的日历实例,并打印日历实例的时区。然后,我们使用 setTimeZone() 方法更新日期的时区。最后,打印更新后的时区。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.TimeZone;

public class CalendarDemo {
   public static void main(String[] args) {

      // create a calendar
      Calendar cal = new GregorianCalendar();

      // print current time zone
      String name = cal.getTimeZone().getDisplayName();
      System.out.println("Current Time Zone:" + name );
      TimeZone tz = TimeZone.getTimeZone("GMT");

      // set the time zone with the given time zone value 
      // and print it
      cal.setTimeZone(tz);
      System.out.println(cal.getTimeZone().getDisplayName());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Current Time Zone:India Standard Time
Greenwich Mean Time

在给定日期的 GregorianCalendar 实例中设置时区示例

以下示例演示了 Java Calendar setTimeZone() 方法的用法。我们使用 GregorianCalendar() 方法创建一个特定日期的日历实例,并打印日历实例的时区。然后,我们使用 setTimeZone() 方法更新日期的时区。最后,打印更新后的时区。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.TimeZone;

public class CalendarDemo {
   public static void main(String[] args) {

      // create a calendar
      Calendar cal = new GregorianCalendar(2022,8,27);

      // print current time zone
      String name = cal.getTimeZone().getDisplayName();
      System.out.println("Current Time Zone:" + name );
      TimeZone tz = TimeZone.getTimeZone("GMT");

      // set the time zone with the given time zone value 
      // and print it
      cal.setTimeZone(tz);
      System.out.println(cal.getTimeZone().getDisplayName());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Current Time Zone:India Standard Time
Greenwich Mean Time
java_util_calendar.htm
广告