当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。