Java Date Time - OffsetTime toString() example








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 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.