java.time.ZonedDateTime.ofStrict() Method Example



Description

The java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) method obtains an instance of ZonedDateTime strictly validating the combination of local date-time, offset and zone ID.

Declaration

Following is the declaration for java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) method.

public static ZonedDateTime ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)

Parameters

  • localDateTime − the local date-time, not null.

  • offset − the zone offset, not null.

  • zone − the time-zone, not null.

Return Value

the zoned date-time, not null.

Example

The following example shows the usage of java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) method.

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.time.ZoneId;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {
 
      ZonedDateTime date = ZonedDateTime.ofStrict(LocalDateTime.now(), ZoneOffset.UTC, ZoneId.of("Z"));
      System.out.println(date);  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-03-28T14:12:19.482Z
Advertisements