Open In App

OffsetTime getOffset() method in Java with examples

The getOffset() method of OffsetTime class in Java gets the zone offset from the parsed time such as ‘+05:00’ which can be considered as an example.

Syntax :



public ZoneOffset getOffset()

Parameter : This method does not accepts any parameter.

Return Value: It returns the zone offset and not null.



Below programs illustrate the getOffset() method:

Program 1 :




// Java program to demonstrate the getOffset() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time
            = OffsetTime.parse("15:30:30+07:00");
  
        // gets the offset time
        System.out.println("Offset time: "
                           + time.getOffset());
    }
}

Output:
Offset time: +07:00

Program 2 :




// Java program to demonstrate the getOffset() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time
            = OffsetTime.parse("11:20:10+04:00");
  
        // gets the offset time
        System.out.println("Offset time: "
                           + time.getOffset());
    }
}

Output:
Offset time: +04:00

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getOffset–


Article Tags :