Here you can find the source of getDefaultRawOffset()
public static long getDefaultRawOffset()
//package com.java2s; //License from project: Apache License import java.util.TimeZone; public class Main { public static long getDefaultRawOffset() { return TimeZone.getDefault().getRawOffset(); }/*from w w w .j av a2s . co m*/ public static long getRawOffset(String timeZoneStr) { return TimeZone.getTimeZone(timeZoneStr).getRawOffset(); } }