OffsetDateTime now()
creates
the current date-time from the system clock in the default time-zone.
now
has the following syntax.
public static OffsetDateTime now()
The following example shows how to use now
.
import java.time.OffsetDateTime; public class Main { public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.now(); System.out.println(o); } }
The code above generates the following result.