OffsetTime toString()
outputs this time as a String.
toString
has the following syntax.
public String toString()
The following example shows how to use toString
.
import java.time.OffsetTime; import java.time.ZoneId; //from ww w . ja va 2 s. c o m 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.