當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java TimeZone getOffset()用法及代碼示例


Java中的TimeZone類的getOffset()方法用於從UTC或世界標準時間獲知該TimeZone在特定日期的偏移值。

用法:

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://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getOffset()



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 TimeZone getOffset() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。