Java中的 GregorianCalendar setTimeZone() 方法
Java.util.GregorianCalendar.setTimeZone()方法是Java中的一个内置方法,它根据传递的参数将当前时区修改为新时区。
句法:
public void setTimeZone(TimeZone tz)
参数:该方法采用TimeZone对象的一个参数tz ,该参数指定新的时区值。
返回值:此方法不返回任何值。
例子:
Input : IST
Output : India Standard Time
Input : UTC
Output : Coordinated Universal Time
下面的程序说明了Java中的Java.util.GregorianCalendar.setTimeZone()函数:
方案一:
// Java Program to illustrate
// GregorianCalendar.setTimeZone()
// function
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args) {
// Create a new calendar
GregorianCalendar cal = (GregorianCalendar)
GregorianCalendar.getInstance();
// Display the current date and time
System.out.println("" + cal.getTime());
System.out.println("Current Time Zone : " +
cal.getTimeZone().getDisplayName());
// Convert to another time zone
cal.setTimeZone(TimeZone.getTimeZone("CST"));
System.out.println("New Time Zone : " +
cal.getTimeZone().getDisplayName());
}
}
输出:
Wed Jul 25 11:11:14 UTC 2018
Current Time Zone : Coordinated Universal Time
New Time Zone : Central Standard Time
方案二:
// Java Program to illustrate
// GregorianCalendar.setTimeZone()
// function
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args) {
// Create a new calendar
GregorianCalendar cal = (GregorianCalendar)
GregorianCalendar.getInstance();
// Display the current date and time
System.out.println("" + cal.getTime());
System.out.println("Current Time Zone : " +
cal.getTimeZone().getDisplayName());
// Convert to another time zone
cal.setTimeZone(TimeZone.getTimeZone("IST"));
System.out.println("New Time Zone : " +
cal.getTimeZone().getDisplayName());
}
}
输出:
Wed Jul 25 11:11:21 UTC 2018
Current Time Zone : Coordinated Universal Time
New Time Zone : India Standard Time
参考: https: Java/util/GregorianCalendar.html#setTimeZone()