📌  相关文章
📜  Java中的 TimeZone getOffset() 方法及示例

📅  最后修改于: 2022-05-13 01:54:18.490000             🧑  作者: Mango

Java中的 TimeZone getOffset() 方法及示例

Java中TimeZone 类getOffset()方法用于获知该 TimeZone 在特定日期与 UTC 或协调世界时的偏移值。

句法:

public int getOffset(long in_date)

参数:该方法接受一个参数,长类型in_date ,它指的是自 1970 年 1 月 1 日格林威治标准时间 00:00:00 以来以毫秒表示的实际日期。

返回值:该方法返回TimeZone 的 ID

下面的程序说明了 TimeZone 的 getOffset() 方法的工作:
示例 1:

// Java code to illustrate getOffset() method
  
import java.util.*;
  
public class TimeZoneDemo {
    public static void main(String args[])
    {
  
        // Creating a TimeZone
        TimeZone offtime_zone
            = TimeZone.getTimeZone("Europe/Rome");
  
        // Checking the offset for the systems date
        System.out.println("The Offset Value is:"
                           + offtime_zone
                                 .getOffset(Calendar.ZONE_OFFSET));
    }
}
输出:
The Offset Value is:3600000

示例 2:

// Java code to illustrate getOffset() method
  
import java.util.*;
  
public class TimeZoneDemo {
    public static void main(String args[])
    {
  
        // Creating a TimeZone
        TimeZone offtime_zone
            = TimeZone.getTimeZone("Pacific/Pago_Pago");
  
        // Checking the offset for the systems date
        System.out.println("The Offset Value is:"
                           + offtime_zone
                                 .getOffset(Calendar.ZONE_OFFSET));
    }
}
输出:
The Offset Value is:-39600000

参考: https: Java/util/TimeZone.html#getOffset()