OffsetTime toString() example
Description
OffsetTime toString()
outputs this time as a String.
Syntax
toString
has the following syntax.
public String toString()
Example
The following example shows how to use toString
.
import java.time.OffsetTime;
import java.time.ZoneId;
/*from w w w.j a v a 2 s .c om*/
public class Main {
public static void main(String[] args) {
OffsetTime m = OffsetTime.now(ZoneId.systemDefault());
System.out.println(m.toString());
}
}
The code above generates the following result.