The Java SimpleTimeZone getRawOffset() method is used to get the GMT offset for this time zone.
DeclarationFollowing is the declaration for java.util.SimpleTimeZone.getRawOffset() method.
public int getRawOffset()Parameters
NA
Return ValueThe method call returns the GMT offset value in milliseconds.
ExceptionNA
Getting GMT OffSet of SimpleTimeZone of India Zone ExampleThe following example shows the usage of Java SimpleTimeZone getRawOffset() method to get the GMT offset of a SimpleTimeZone object. We've created a SimpleTimeZone using India. Then we've retrieved the GMT offset and printed it.
package com.tutorialspoint; import java.util.SimpleTimeZone; public class SimpleTimeZoneDemo { public static void main( String args[] ) { // create simple time zone object SimpleTimeZone stobj = new SimpleTimeZone(720,"India"); // get raw offset int offset = stobj.getRawOffset(); // check raw offset value System.out.println("Raw Offset is : " + offset); } }Output
Let us compile and run the above program, this will produce the following result.
Raw Offset is : 720Getting GMT OffSet of SimpleTimeZone of US Zone Example
The following example shows the usage of Java SimpleTimeZone getRawOffset() method to get the GMT offset of a SimpleTimeZone object. We've created a SimpleTimeZone using US. Then we've retrieved the GMT offset and printed it.
package com.tutorialspoint; import java.util.SimpleTimeZone; public class SimpleTimeZoneDemo { public static void main( String args[] ) { // create simple time zone object SimpleTimeZone stobj = new SimpleTimeZone(720,"US"); // get raw offset int offset = stobj.getRawOffset(); // check raw offset value System.out.println("Raw Offset is : " + offset); } }Output
Let us compile and run the above program, this will produce the following result.
Raw Offset is : 720Getting GMT OffSet of SimpleTimeZone of UK Zone Example
The following example shows the usage of Java SimpleTimeZone getRawOffset() method to get the GMT offset of a SimpleTimeZone object. We've created a SimpleTimeZone using UK. Then we've retrieved the GMT offset and printed it.
package com.tutorialspoint; import java.util.SimpleTimeZone; public class SimpleTimeZoneDemo { public static void main( String args[] ) { // create simple time zone object SimpleTimeZone stobj = new SimpleTimeZone(720,"UK"); // get raw offset int offset = stobj.getRawOffset(); // check raw offset value System.out.println("Raw Offset is : " + offset); } }Output
Let us compile and run the above program, this will produce the following result.
Raw Offset is : 720
java_util_simpletimezone.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4