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


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


Java中的TimeZone類的getDSTSavings()方法用於了解需要添加到本地標準時間以獲得掛鍾時間的時間量。

用法:

public int getDSTSavings()

參數:該方法不帶任何參數。


返回值:該方法以毫秒為單位返回需要增加到本地標準時間以獲得掛鍾時間的時間量。這稱為節省時間。

下麵的程序演示了TimeZone的getDSTSavings()方法的用法:
示例1:

// Java code to illustrate getDSTSavings() method 
  
import java.util.*; 
  
public class TimeZoneDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating a TimeZone 
        TimeZone offtime_zone 
            = TimeZone 
                  .getTimeZone("Pacific/Pago_Pago"); 
  
        // Knowing the DST 
        System.out.println("The DST is: "
                           + offtime_zone.getDSTSavings()); 
    } 
}
輸出:
The DST is: 0

示例2:

// Java code to illustrate getDSTSavings() method 
  
import java.util.*; 
  
public class TimeZoneDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating a TimeZone 
        TimeZone offtime_zone 
            = TimeZone.getTimeZone("Europe/Rome"); 
  
        // Knowing the DST 
        System.out.println("The DST is: "
                           + offtime_zone.getDSTSavings()); 
    } 
}
輸出:
The DST is: 3600000

參考:https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getDSTSavings()



相關用法


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