Friday, May 8, 2026
HomeLanguagesJavaOffsetTime toString() method in Java with examples

OffsetTime toString() method in Java with examples

The toString() method of OffsetTime class in Java outputs this date as a String, such as “11:25:10+11:10” for an example.

Syntax :

public String toString()

Parameter: This method does not accepts any parameter.

Return Value: It returns a string representation of this date, not null.

Below programs illustrate the toString() method:




// Java program to demonstrate the toString() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
        // Gets the current time
        OffsetTime time = OffsetTime.now();
  
        // Gets the local time
        System.out.println("Local-time in string format: " 
                                        + time.toString());
    }
}


Output:

Local-time in string format: 04:04:24.595Z

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12106 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6962 POSTS0 COMMENTS