Java TimeZone getDSTSavings()方法及示例
Java中 TimeZone类 的 getDSTSavings() 方法用于了解需要添加到本地标准时间中的时间量,以获得挂钟时间。
语法
public int getDSTSavings()
参数: 该方法不接受任何参数。
返回值: 该方法以毫秒为单位返回需要加到本地标准时间上的 时间量 ,以得到挂钟时间。这就是所谓的 节约时间。
下面的程序说明了时区的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()